@vuetify/nightly 3.8.5-master.2025-05-20 → 3.8.6-master.2025-05-21
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 +10 -15
- package/dist/json/attributes.json +3366 -3382
- package/dist/json/importMap-labs.json +26 -26
- package/dist/json/importMap.json +162 -162
- package/dist/json/tags.json +0 -4
- package/dist/json/web-types.json +6264 -6300
- package/dist/vuetify-labs.cjs +67 -31
- package/dist/vuetify-labs.css +4385 -4385
- package/dist/vuetify-labs.d.ts +63 -83
- package/dist/vuetify-labs.esm.js +67 -31
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +67 -31
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +67 -31
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +1780 -1780
- package/dist/vuetify.d.ts +63 -73
- package/dist/vuetify.esm.js +67 -31
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +67 -31
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +37 -34
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.d.ts +0 -10
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +0 -10
- package/lib/components/VDatePicker/VDatePickerMonth.js +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.js.map +1 -1
- package/lib/components/VNavigationDrawer/touch.js +2 -4
- package/lib/components/VNavigationDrawer/touch.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.js +18 -10
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/components/VProgressCircular/VProgressCircular.js +2 -2
- package/lib/components/VProgressCircular/VProgressCircular.js.map +1 -1
- package/lib/components/VSelect/VSelect.js +36 -7
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VSlider/slider.js +1 -1
- package/lib/components/VSlider/slider.js.map +1 -1
- package/lib/composables/calendar.d.ts +0 -5
- package/lib/composables/calendar.js +1 -2
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/date/DateAdapter.d.ts +1 -1
- package/lib/composables/date/DateAdapter.js.map +1 -1
- package/lib/composables/date/adapters/vuetify.d.ts +1 -1
- package/lib/composables/date/adapters/vuetify.js +4 -4
- package/lib/composables/date/adapters/vuetify.js.map +1 -1
- package/lib/composables/date/date.d.ts +1 -1
- package/lib/composables/goto.js +1 -1
- package/lib/composables/goto.js.map +1 -1
- package/lib/entry-bundler.d.ts +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +63 -63
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +0 -10
- package/lib/labs/VDateInput/VDateInput.d.ts +0 -10
- package/lib/labs/entry-bundler.d.ts +1 -1
- package/package.json +5 -5
package/dist/vuetify.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.
|
2
|
+
* Vuetify v3.8.6-master.2025-05-21
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -17985,6 +17985,22 @@ html.overflow-y-hidden {
|
|
17985
17985
|
.v-ripple__animation--out {
|
17986
17986
|
transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
|
17987
17987
|
opacity: 0;
|
17988
|
+
}.v-application {
|
17989
|
+
display: flex;
|
17990
|
+
background: rgb(var(--v-theme-background));
|
17991
|
+
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
17992
|
+
}
|
17993
|
+
|
17994
|
+
.v-application__wrap {
|
17995
|
+
-webkit-backface-visibility: hidden;
|
17996
|
+
backface-visibility: hidden;
|
17997
|
+
display: flex;
|
17998
|
+
flex-direction: column;
|
17999
|
+
flex: 1 1 auto;
|
18000
|
+
max-width: 100%;
|
18001
|
+
min-height: 100vh;
|
18002
|
+
min-height: 100dvh;
|
18003
|
+
position: relative;
|
17988
18004
|
}.v-app-bar {
|
17989
18005
|
display: flex;
|
17990
18006
|
}
|
@@ -17997,6 +18013,112 @@ html.overflow-y-hidden {
|
|
17997
18013
|
}
|
17998
18014
|
.v-app-bar:not(.v-toolbar--absolute) {
|
17999
18015
|
padding-inline-end: var(--v-scrollbar-offset);
|
18016
|
+
}.v-avatar {
|
18017
|
+
flex: none;
|
18018
|
+
align-items: center;
|
18019
|
+
display: inline-flex;
|
18020
|
+
justify-content: center;
|
18021
|
+
line-height: normal;
|
18022
|
+
overflow: hidden;
|
18023
|
+
position: relative;
|
18024
|
+
text-align: center;
|
18025
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
18026
|
+
transition-property: width, height;
|
18027
|
+
vertical-align: middle;
|
18028
|
+
}
|
18029
|
+
.v-avatar.v-avatar--size-x-small {
|
18030
|
+
--v-avatar-height: 24px;
|
18031
|
+
}
|
18032
|
+
.v-avatar.v-avatar--size-small {
|
18033
|
+
--v-avatar-height: 32px;
|
18034
|
+
}
|
18035
|
+
.v-avatar.v-avatar--size-default {
|
18036
|
+
--v-avatar-height: 40px;
|
18037
|
+
}
|
18038
|
+
.v-avatar.v-avatar--size-large {
|
18039
|
+
--v-avatar-height: 48px;
|
18040
|
+
}
|
18041
|
+
.v-avatar.v-avatar--size-x-large {
|
18042
|
+
--v-avatar-height: 56px;
|
18043
|
+
}
|
18044
|
+
.v-avatar.v-avatar--density-default {
|
18045
|
+
height: calc(var(--v-avatar-height) + 0px);
|
18046
|
+
width: calc(var(--v-avatar-height) + 0px);
|
18047
|
+
}
|
18048
|
+
.v-avatar.v-avatar--density-comfortable {
|
18049
|
+
height: calc(var(--v-avatar-height) + -4px);
|
18050
|
+
width: calc(var(--v-avatar-height) + -4px);
|
18051
|
+
}
|
18052
|
+
.v-avatar.v-avatar--density-compact {
|
18053
|
+
height: calc(var(--v-avatar-height) + -8px);
|
18054
|
+
width: calc(var(--v-avatar-height) + -8px);
|
18055
|
+
}
|
18056
|
+
.v-avatar {
|
18057
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18058
|
+
border-style: solid;
|
18059
|
+
border-width: 0;
|
18060
|
+
}
|
18061
|
+
.v-avatar--border {
|
18062
|
+
border-width: thin;
|
18063
|
+
box-shadow: none;
|
18064
|
+
}
|
18065
|
+
.v-avatar {
|
18066
|
+
border-radius: 50%;
|
18067
|
+
}
|
18068
|
+
.v-avatar--variant-plain, .v-avatar--variant-outlined, .v-avatar--variant-text, .v-avatar--variant-tonal {
|
18069
|
+
background: transparent;
|
18070
|
+
color: inherit;
|
18071
|
+
}
|
18072
|
+
.v-avatar--variant-plain {
|
18073
|
+
opacity: 0.62;
|
18074
|
+
}
|
18075
|
+
.v-avatar--variant-plain:focus, .v-avatar--variant-plain:hover {
|
18076
|
+
opacity: 1;
|
18077
|
+
}
|
18078
|
+
.v-avatar--variant-plain .v-avatar__overlay {
|
18079
|
+
display: none;
|
18080
|
+
}
|
18081
|
+
.v-avatar--variant-elevated, .v-avatar--variant-flat {
|
18082
|
+
background: var(--v-theme-surface);
|
18083
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
18084
|
+
}
|
18085
|
+
.v-avatar--variant-elevated {
|
18086
|
+
box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
18087
|
+
}
|
18088
|
+
.v-avatar--variant-flat {
|
18089
|
+
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));
|
18090
|
+
}
|
18091
|
+
.v-avatar--variant-outlined {
|
18092
|
+
border: thin solid currentColor;
|
18093
|
+
}
|
18094
|
+
.v-avatar--variant-text .v-avatar__overlay {
|
18095
|
+
background: currentColor;
|
18096
|
+
}
|
18097
|
+
.v-avatar--variant-tonal .v-avatar__underlay {
|
18098
|
+
background: currentColor;
|
18099
|
+
opacity: var(--v-activated-opacity);
|
18100
|
+
border-radius: inherit;
|
18101
|
+
top: 0;
|
18102
|
+
right: 0;
|
18103
|
+
bottom: 0;
|
18104
|
+
left: 0;
|
18105
|
+
pointer-events: none;
|
18106
|
+
}
|
18107
|
+
.v-avatar .v-avatar__underlay {
|
18108
|
+
position: absolute;
|
18109
|
+
}
|
18110
|
+
.v-avatar--rounded {
|
18111
|
+
border-radius: 4px;
|
18112
|
+
}
|
18113
|
+
.v-avatar--start {
|
18114
|
+
margin-inline-end: 8px;
|
18115
|
+
}
|
18116
|
+
.v-avatar--end {
|
18117
|
+
margin-inline-start: 8px;
|
18118
|
+
}
|
18119
|
+
.v-avatar .v-img {
|
18120
|
+
height: 100%;
|
18121
|
+
width: 100%;
|
18000
18122
|
}.v-alert {
|
18001
18123
|
display: grid;
|
18002
18124
|
flex: 1 1;
|
@@ -18213,196 +18335,249 @@ html.overflow-y-hidden {
|
|
18213
18335
|
text-transform: none;
|
18214
18336
|
word-break: normal;
|
18215
18337
|
word-wrap: break-word;
|
18216
|
-
}.v-
|
18217
|
-
|
18218
|
-
|
18219
|
-
cursor: text;
|
18220
|
-
}
|
18221
|
-
.v-autocomplete .v-field .v-field__input > input {
|
18222
|
-
flex: 1 1;
|
18223
|
-
}
|
18224
|
-
.v-autocomplete .v-field input {
|
18225
|
-
min-width: 64px;
|
18226
|
-
}
|
18227
|
-
.v-autocomplete .v-field:not(.v-field--focused) input {
|
18228
|
-
min-width: 0;
|
18229
|
-
}
|
18230
|
-
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
18231
|
-
margin-inline-end: 2px;
|
18232
|
-
}
|
18233
|
-
.v-autocomplete .v-autocomplete__selection-text {
|
18234
|
-
overflow: hidden;
|
18235
|
-
text-overflow: ellipsis;
|
18236
|
-
white-space: nowrap;
|
18338
|
+
}.v-badge {
|
18339
|
+
display: inline-block;
|
18340
|
+
line-height: 1;
|
18237
18341
|
}
|
18238
18342
|
|
18239
|
-
.v-
|
18240
|
-
overflow: hidden;
|
18241
|
-
}
|
18242
|
-
.v-autocomplete__content {
|
18243
|
-
box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
18244
|
-
}
|
18245
|
-
.v-autocomplete__content {
|
18246
|
-
border-radius: 4px;
|
18247
|
-
}
|
18248
|
-
.v-autocomplete__mask {
|
18249
|
-
background: rgb(var(--v-theme-surface-light));
|
18250
|
-
}
|
18251
|
-
.v-autocomplete__selection {
|
18252
|
-
display: inline-flex;
|
18343
|
+
.v-badge__badge {
|
18253
18344
|
align-items: center;
|
18254
|
-
|
18255
|
-
|
18256
|
-
|
18257
|
-
|
18258
|
-
|
18259
|
-
|
18260
|
-
|
18261
|
-
|
18262
|
-
|
18263
|
-
|
18264
|
-
|
18265
|
-
|
18266
|
-
|
18267
|
-
|
18268
|
-
|
18269
|
-
opacity: var(--v-medium-emphasis-opacity);
|
18345
|
+
display: inline-flex;
|
18346
|
+
border-radius: 10px;
|
18347
|
+
font-family: "Roboto", sans-serif;
|
18348
|
+
font-size: 0.75rem;
|
18349
|
+
font-weight: 500;
|
18350
|
+
height: 1.25rem;
|
18351
|
+
justify-content: center;
|
18352
|
+
min-width: 20px;
|
18353
|
+
padding: 4px 6px;
|
18354
|
+
pointer-events: auto;
|
18355
|
+
position: absolute;
|
18356
|
+
text-align: center;
|
18357
|
+
text-indent: 0;
|
18358
|
+
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
18359
|
+
white-space: nowrap;
|
18270
18360
|
}
|
18271
|
-
.v-
|
18272
|
-
|
18361
|
+
.v-badge__badge {
|
18362
|
+
background: rgb(var(--v-theme-surface-variant));
|
18363
|
+
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
18273
18364
|
}
|
18274
|
-
.v-
|
18275
|
-
|
18365
|
+
.v-badge__badge:has(.v-icon) {
|
18366
|
+
padding: 4px 6px;
|
18276
18367
|
}
|
18277
|
-
.v-
|
18278
|
-
|
18279
|
-
|
18368
|
+
.v-badge--bordered .v-badge__badge::after {
|
18369
|
+
border-radius: inherit;
|
18370
|
+
border-style: solid;
|
18371
|
+
border-width: 2px;
|
18372
|
+
bottom: 0;
|
18373
|
+
color: rgb(var(--v-theme-background));
|
18374
|
+
content: "";
|
18280
18375
|
left: 0;
|
18376
|
+
position: absolute;
|
18281
18377
|
right: 0;
|
18282
|
-
|
18283
|
-
|
18378
|
+
top: 0;
|
18379
|
+
transform: scale(1.05);
|
18284
18380
|
}
|
18285
|
-
.v-
|
18286
|
-
|
18381
|
+
.v-badge--dot .v-badge__badge {
|
18382
|
+
border-radius: 4.5px;
|
18383
|
+
height: 9px;
|
18384
|
+
min-width: 0;
|
18385
|
+
padding: 0;
|
18386
|
+
width: 9px;
|
18287
18387
|
}
|
18288
|
-
.v-
|
18289
|
-
|
18388
|
+
.v-badge--dot .v-badge__badge::after {
|
18389
|
+
border-width: 1.5px;
|
18290
18390
|
}
|
18291
|
-
.v-
|
18292
|
-
|
18391
|
+
.v-badge--inline .v-badge__badge {
|
18392
|
+
position: relative;
|
18393
|
+
vertical-align: middle;
|
18293
18394
|
}
|
18294
|
-
.v-
|
18295
|
-
|
18296
|
-
|
18395
|
+
.v-badge__badge .v-icon {
|
18396
|
+
color: inherit;
|
18397
|
+
font-size: 0.75rem;
|
18398
|
+
margin: 0 -2px;
|
18297
18399
|
}
|
18298
|
-
.v-
|
18299
|
-
|
18300
|
-
|
18301
|
-
|
18400
|
+
.v-badge__badge img,
|
18401
|
+
.v-badge__badge .v-img {
|
18402
|
+
height: 100%;
|
18403
|
+
width: 100%;
|
18404
|
+
}
|
18405
|
+
|
18406
|
+
.v-badge__wrapper {
|
18407
|
+
display: flex;
|
18408
|
+
position: relative;
|
18409
|
+
}
|
18410
|
+
.v-badge--inline .v-badge__wrapper {
|
18302
18411
|
align-items: center;
|
18303
18412
|
display: inline-flex;
|
18304
18413
|
justify-content: center;
|
18305
|
-
|
18414
|
+
margin: 0 4px;
|
18415
|
+
}.v-banner {
|
18416
|
+
display: grid;
|
18417
|
+
flex: 1 1;
|
18418
|
+
font-size: 0.875rem;
|
18419
|
+
grid-template-areas: "prepend content actions";
|
18420
|
+
grid-template-columns: max-content auto max-content;
|
18421
|
+
grid-template-rows: max-content max-content;
|
18422
|
+
line-height: 1.6;
|
18306
18423
|
overflow: hidden;
|
18424
|
+
padding-inline: 16px 8px;
|
18425
|
+
padding-top: 16px;
|
18426
|
+
padding-bottom: 16px;
|
18307
18427
|
position: relative;
|
18308
|
-
|
18309
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
18310
|
-
transition-property: width, height;
|
18311
|
-
vertical-align: middle;
|
18428
|
+
width: 100%;
|
18312
18429
|
}
|
18313
|
-
.v-
|
18314
|
-
--v-
|
18430
|
+
.v-banner {
|
18431
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18432
|
+
border-style: solid;
|
18433
|
+
border-width: 0 0 thin 0;
|
18315
18434
|
}
|
18316
|
-
.v-
|
18317
|
-
|
18435
|
+
.v-banner--border {
|
18436
|
+
border-width: thin;
|
18437
|
+
box-shadow: none;
|
18318
18438
|
}
|
18319
|
-
.v-
|
18320
|
-
--v-
|
18439
|
+
.v-banner {
|
18440
|
+
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
18321
18441
|
}
|
18322
|
-
.v-
|
18323
|
-
|
18442
|
+
.v-banner--absolute {
|
18443
|
+
position: absolute;
|
18324
18444
|
}
|
18325
|
-
.v-
|
18326
|
-
|
18445
|
+
.v-banner--fixed {
|
18446
|
+
position: fixed;
|
18327
18447
|
}
|
18328
|
-
.v-
|
18329
|
-
|
18330
|
-
width: calc(var(--v-avatar-height) + 0px);
|
18448
|
+
.v-banner--sticky {
|
18449
|
+
position: sticky;
|
18331
18450
|
}
|
18332
|
-
.v-
|
18333
|
-
|
18334
|
-
width: calc(var(--v-avatar-height) + -4px);
|
18451
|
+
.v-banner {
|
18452
|
+
border-radius: 0;
|
18335
18453
|
}
|
18336
|
-
.v-
|
18337
|
-
|
18338
|
-
|
18454
|
+
.v-banner {
|
18455
|
+
background: rgb(var(--v-theme-surface));
|
18456
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18339
18457
|
}
|
18340
|
-
.v-
|
18341
|
-
border-
|
18342
|
-
border-style: solid;
|
18343
|
-
border-width: 0;
|
18458
|
+
.v-banner--rounded {
|
18459
|
+
border-radius: 4px;
|
18344
18460
|
}
|
18345
|
-
.v-
|
18346
|
-
|
18347
|
-
box-shadow: none;
|
18461
|
+
.v-banner--stacked:not(.v-banner--one-line) {
|
18462
|
+
grid-template-areas: "prepend content" ". actions";
|
18348
18463
|
}
|
18349
|
-
.v-
|
18350
|
-
|
18464
|
+
.v-banner--stacked .v-banner-text {
|
18465
|
+
padding-inline-end: 36px;
|
18351
18466
|
}
|
18352
|
-
.v-
|
18353
|
-
|
18354
|
-
color: inherit;
|
18467
|
+
.v-banner--density-default .v-banner-actions {
|
18468
|
+
margin-bottom: -8px;
|
18355
18469
|
}
|
18356
|
-
.v-
|
18357
|
-
|
18470
|
+
.v-banner--density-default.v-banner--one-line {
|
18471
|
+
padding-top: 8px;
|
18472
|
+
padding-bottom: 8px;
|
18358
18473
|
}
|
18359
|
-
.v-
|
18360
|
-
|
18474
|
+
.v-banner--density-default.v-banner--one-line .v-banner-actions {
|
18475
|
+
margin-bottom: 0;
|
18361
18476
|
}
|
18362
|
-
.v-
|
18363
|
-
|
18477
|
+
.v-banner--density-default.v-banner--one-line {
|
18478
|
+
padding-top: 10px;
|
18364
18479
|
}
|
18365
|
-
.v-
|
18366
|
-
|
18367
|
-
|
18480
|
+
.v-banner--density-default.v-banner--two-line {
|
18481
|
+
padding-top: 16px;
|
18482
|
+
padding-bottom: 16px;
|
18368
18483
|
}
|
18369
|
-
.v-
|
18370
|
-
|
18484
|
+
.v-banner--density-default.v-banner--three-line {
|
18485
|
+
padding-top: 24px;
|
18486
|
+
padding-bottom: 16px;
|
18371
18487
|
}
|
18372
|
-
.v-
|
18373
|
-
|
18488
|
+
.v-banner--density-default:not(.v-banner--one-line) .v-banner-actions, .v-banner--density-default.v-banner--two-line .v-banner-actions, .v-banner--density-default.v-banner--three-line .v-banner-actions {
|
18489
|
+
margin-top: 20px;
|
18374
18490
|
}
|
18375
|
-
|
18376
|
-
|
18491
|
+
|
18492
|
+
.v-banner--density-comfortable .v-banner-actions {
|
18493
|
+
margin-bottom: -4px;
|
18377
18494
|
}
|
18378
|
-
.v-
|
18379
|
-
|
18495
|
+
.v-banner--density-comfortable.v-banner--one-line {
|
18496
|
+
padding-top: 4px;
|
18497
|
+
padding-bottom: 4px;
|
18380
18498
|
}
|
18381
|
-
.v-
|
18382
|
-
|
18383
|
-
|
18384
|
-
|
18499
|
+
.v-banner--density-comfortable.v-banner--one-line .v-banner-actions {
|
18500
|
+
margin-bottom: 0;
|
18501
|
+
}
|
18502
|
+
.v-banner--density-comfortable.v-banner--two-line {
|
18503
|
+
padding-top: 12px;
|
18504
|
+
padding-bottom: 12px;
|
18505
|
+
}
|
18506
|
+
.v-banner--density-comfortable.v-banner--three-line {
|
18507
|
+
padding-top: 20px;
|
18508
|
+
padding-bottom: 12px;
|
18509
|
+
}
|
18510
|
+
.v-banner--density-comfortable:not(.v-banner--one-line) .v-banner-actions, .v-banner--density-comfortable.v-banner--two-line .v-banner-actions, .v-banner--density-comfortable.v-banner--three-line .v-banner-actions {
|
18511
|
+
margin-top: 16px;
|
18512
|
+
}
|
18513
|
+
|
18514
|
+
.v-banner--density-compact .v-banner-actions {
|
18515
|
+
margin-bottom: 0px;
|
18516
|
+
}
|
18517
|
+
.v-banner--density-compact.v-banner--one-line {
|
18518
|
+
padding-top: 0px;
|
18519
|
+
padding-bottom: 0px;
|
18520
|
+
}
|
18521
|
+
.v-banner--density-compact.v-banner--one-line .v-banner-actions {
|
18522
|
+
margin-bottom: 0;
|
18523
|
+
}
|
18524
|
+
.v-banner--density-compact.v-banner--two-line {
|
18525
|
+
padding-top: 8px;
|
18526
|
+
padding-bottom: 8px;
|
18527
|
+
}
|
18528
|
+
.v-banner--density-compact.v-banner--three-line {
|
18529
|
+
padding-top: 16px;
|
18530
|
+
padding-bottom: 8px;
|
18531
|
+
}
|
18532
|
+
.v-banner--density-compact:not(.v-banner--one-line) .v-banner-actions, .v-banner--density-compact.v-banner--two-line .v-banner-actions, .v-banner--density-compact.v-banner--three-line .v-banner-actions {
|
18533
|
+
margin-top: 12px;
|
18534
|
+
}
|
18535
|
+
|
18536
|
+
.v-banner--sticky {
|
18385
18537
|
top: 0;
|
18386
|
-
|
18387
|
-
bottom: 0;
|
18388
|
-
left: 0;
|
18389
|
-
pointer-events: none;
|
18538
|
+
z-index: 1;
|
18390
18539
|
}
|
18391
|
-
|
18392
|
-
|
18540
|
+
|
18541
|
+
.v-banner__content {
|
18542
|
+
align-items: center;
|
18543
|
+
display: flex;
|
18544
|
+
grid-area: content;
|
18393
18545
|
}
|
18394
|
-
|
18395
|
-
|
18546
|
+
|
18547
|
+
.v-banner__prepend {
|
18548
|
+
align-self: flex-start;
|
18549
|
+
grid-area: prepend;
|
18550
|
+
margin-inline-end: 24px;
|
18396
18551
|
}
|
18397
|
-
|
18398
|
-
|
18552
|
+
|
18553
|
+
.v-banner-actions {
|
18554
|
+
align-self: flex-end;
|
18555
|
+
display: flex;
|
18556
|
+
flex: 0 1;
|
18557
|
+
grid-area: actions;
|
18558
|
+
justify-content: flex-end;
|
18399
18559
|
}
|
18400
|
-
.v-
|
18401
|
-
margin-
|
18560
|
+
.v-banner--two-line .v-banner-actions, .v-banner--three-line .v-banner-actions {
|
18561
|
+
margin-top: 20px;
|
18402
18562
|
}
|
18403
|
-
|
18404
|
-
|
18405
|
-
|
18563
|
+
|
18564
|
+
.v-banner-text {
|
18565
|
+
-webkit-box-orient: vertical;
|
18566
|
+
display: -webkit-box;
|
18567
|
+
padding-inline-end: 90px;
|
18568
|
+
overflow: hidden;
|
18569
|
+
}
|
18570
|
+
.v-banner--one-line .v-banner-text {
|
18571
|
+
-webkit-line-clamp: 1;
|
18572
|
+
}
|
18573
|
+
.v-banner--two-line .v-banner-text {
|
18574
|
+
-webkit-line-clamp: 2;
|
18575
|
+
}
|
18576
|
+
.v-banner--three-line .v-banner-text {
|
18577
|
+
-webkit-line-clamp: 3;
|
18578
|
+
}
|
18579
|
+
.v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
|
18580
|
+
align-self: flex-start;
|
18406
18581
|
}.v-bottom-navigation {
|
18407
18582
|
display: flex;
|
18408
18583
|
max-width: 100%;
|
@@ -18467,117 +18642,326 @@ html.overflow-y-hidden {
|
|
18467
18642
|
}
|
18468
18643
|
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
18469
18644
|
transform: translateY(0.5rem);
|
18470
|
-
}.
|
18471
|
-
|
18472
|
-
|
18645
|
+
}.bottom-sheet-transition-enter-from {
|
18646
|
+
transform: translateY(100%);
|
18647
|
+
}
|
18648
|
+
.bottom-sheet-transition-leave-to {
|
18649
|
+
transform: translateY(100%);
|
18473
18650
|
}
|
18474
18651
|
|
18475
|
-
.v-
|
18476
|
-
align-
|
18477
|
-
|
18478
|
-
|
18479
|
-
|
18480
|
-
|
18481
|
-
|
18482
|
-
|
18483
|
-
|
18484
|
-
|
18485
|
-
|
18486
|
-
|
18487
|
-
position: absolute;
|
18488
|
-
text-align: center;
|
18489
|
-
text-indent: 0;
|
18490
|
-
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
18491
|
-
white-space: nowrap;
|
18652
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
18653
|
+
align-self: flex-end;
|
18654
|
+
border-radius: 0;
|
18655
|
+
flex: 0 1 auto;
|
18656
|
+
left: 0;
|
18657
|
+
right: 0;
|
18658
|
+
margin-inline: auto;
|
18659
|
+
margin-bottom: 0;
|
18660
|
+
transition-duration: 0.2s;
|
18661
|
+
width: 100%;
|
18662
|
+
max-width: 100%;
|
18663
|
+
overflow: visible;
|
18492
18664
|
}
|
18493
|
-
.v-
|
18494
|
-
|
18495
|
-
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
18665
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
18666
|
+
box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
18496
18667
|
}
|
18497
|
-
.v-
|
18498
|
-
|
18668
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
|
18669
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
|
18670
|
+
border-radius: 0;
|
18499
18671
|
}
|
18500
|
-
.v-
|
18501
|
-
|
18502
|
-
|
18503
|
-
|
18504
|
-
bottom
|
18505
|
-
|
18506
|
-
|
18507
|
-
|
18672
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
18673
|
+
max-width: none;
|
18674
|
+
}
|
18675
|
+
@media (min-width: 600px) {
|
18676
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
18677
|
+
max-width: 70%;
|
18678
|
+
}
|
18679
|
+
}.v-autocomplete .v-field .v-text-field__prefix,
|
18680
|
+
.v-autocomplete .v-field .v-text-field__suffix,
|
18681
|
+
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
18682
|
+
cursor: text;
|
18683
|
+
}
|
18684
|
+
.v-autocomplete .v-field .v-field__input > input {
|
18685
|
+
flex: 1 1;
|
18686
|
+
}
|
18687
|
+
.v-autocomplete .v-field input {
|
18688
|
+
min-width: 64px;
|
18689
|
+
}
|
18690
|
+
.v-autocomplete .v-field:not(.v-field--focused) input {
|
18691
|
+
min-width: 0;
|
18692
|
+
}
|
18693
|
+
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
18694
|
+
margin-inline-end: 2px;
|
18695
|
+
}
|
18696
|
+
.v-autocomplete .v-autocomplete__selection-text {
|
18697
|
+
overflow: hidden;
|
18698
|
+
text-overflow: ellipsis;
|
18699
|
+
white-space: nowrap;
|
18700
|
+
}
|
18701
|
+
|
18702
|
+
.v-autocomplete__content {
|
18703
|
+
overflow: hidden;
|
18704
|
+
}
|
18705
|
+
.v-autocomplete__content {
|
18706
|
+
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));
|
18707
|
+
}
|
18708
|
+
.v-autocomplete__content {
|
18709
|
+
border-radius: 4px;
|
18710
|
+
}
|
18711
|
+
.v-autocomplete__mask {
|
18712
|
+
background: rgb(var(--v-theme-surface-light));
|
18713
|
+
}
|
18714
|
+
.v-autocomplete__selection {
|
18715
|
+
display: inline-flex;
|
18716
|
+
align-items: center;
|
18717
|
+
height: 1.5rem;
|
18718
|
+
letter-spacing: inherit;
|
18719
|
+
line-height: inherit;
|
18720
|
+
max-width: calc(100% - 2px - 2px);
|
18721
|
+
}
|
18722
|
+
.v-autocomplete__selection:first-child {
|
18723
|
+
margin-inline-start: 0;
|
18724
|
+
}
|
18725
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
18726
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
18727
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
18728
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
18729
|
+
top: 0px;
|
18730
|
+
}
|
18731
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
18732
|
+
opacity: var(--v-medium-emphasis-opacity);
|
18733
|
+
}
|
18734
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
18735
|
+
opacity: 1;
|
18736
|
+
}
|
18737
|
+
.v-autocomplete--selecting-index .v-field__input > input {
|
18738
|
+
caret-color: transparent;
|
18739
|
+
}
|
18740
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
|
18741
|
+
flex: 1 1;
|
18508
18742
|
position: absolute;
|
18743
|
+
left: 0;
|
18509
18744
|
right: 0;
|
18510
|
-
|
18511
|
-
|
18745
|
+
width: 100%;
|
18746
|
+
padding-inline: inherit;
|
18512
18747
|
}
|
18513
|
-
.v-
|
18514
|
-
|
18515
|
-
height: 9px;
|
18516
|
-
min-width: 0;
|
18517
|
-
padding: 0;
|
18518
|
-
width: 9px;
|
18748
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
|
18749
|
+
transition: none;
|
18519
18750
|
}
|
18520
|
-
.v-
|
18521
|
-
|
18751
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
18752
|
+
opacity: 0;
|
18522
18753
|
}
|
18523
|
-
.v-
|
18524
|
-
|
18754
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
|
18755
|
+
opacity: 0;
|
18756
|
+
}
|
18757
|
+
.v-autocomplete__menu-icon {
|
18758
|
+
margin-inline-start: 4px;
|
18759
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
18760
|
+
}
|
18761
|
+
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
18762
|
+
transform: rotate(180deg);
|
18763
|
+
}.v-breadcrumbs {
|
18764
|
+
display: flex;
|
18765
|
+
align-items: center;
|
18766
|
+
line-height: 1.6;
|
18767
|
+
padding: 16px 12px;
|
18768
|
+
}
|
18769
|
+
.v-breadcrumbs--rounded {
|
18770
|
+
border-radius: 4px;
|
18771
|
+
}
|
18772
|
+
.v-breadcrumbs--density-default {
|
18773
|
+
padding-top: 16px;
|
18774
|
+
padding-bottom: 16px;
|
18775
|
+
}
|
18776
|
+
|
18777
|
+
.v-breadcrumbs--density-comfortable {
|
18778
|
+
padding-top: 12px;
|
18779
|
+
padding-bottom: 12px;
|
18780
|
+
}
|
18781
|
+
|
18782
|
+
.v-breadcrumbs--density-compact {
|
18783
|
+
padding-top: 8px;
|
18784
|
+
padding-bottom: 8px;
|
18785
|
+
}
|
18786
|
+
|
18787
|
+
.v-breadcrumbs__prepend {
|
18788
|
+
align-items: center;
|
18789
|
+
display: inline-flex;
|
18790
|
+
}
|
18791
|
+
|
18792
|
+
.v-breadcrumbs-item {
|
18793
|
+
align-items: center;
|
18794
|
+
color: inherit;
|
18795
|
+
display: inline-flex;
|
18796
|
+
padding: 0 4px;
|
18797
|
+
text-decoration: none;
|
18525
18798
|
vertical-align: middle;
|
18526
18799
|
}
|
18527
|
-
.v-
|
18800
|
+
.v-breadcrumbs-item--disabled {
|
18801
|
+
opacity: var(--v-disabled-opacity);
|
18802
|
+
pointer-events: none;
|
18803
|
+
}
|
18804
|
+
.v-breadcrumbs-item--link {
|
18528
18805
|
color: inherit;
|
18529
|
-
|
18530
|
-
margin: 0 -2px;
|
18806
|
+
text-decoration: none;
|
18531
18807
|
}
|
18532
|
-
.v-
|
18533
|
-
|
18534
|
-
|
18535
|
-
|
18808
|
+
.v-breadcrumbs-item--link:hover {
|
18809
|
+
text-decoration: underline;
|
18810
|
+
}
|
18811
|
+
.v-breadcrumbs-item .v-icon {
|
18812
|
+
font-size: 1rem;
|
18813
|
+
margin-inline: -4px 2px;
|
18536
18814
|
}
|
18537
18815
|
|
18538
|
-
.v-
|
18539
|
-
display:
|
18540
|
-
|
18816
|
+
.v-breadcrumbs-divider {
|
18817
|
+
display: inline-block;
|
18818
|
+
padding: 0 8px;
|
18819
|
+
vertical-align: middle;
|
18820
|
+
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
18821
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
18541
18822
|
}
|
18542
|
-
.v-
|
18543
|
-
|
18823
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
18824
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
18825
|
+
}
|
18826
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
18827
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
18828
|
+
}
|
18829
|
+
@supports not selector(:focus-visible) {
|
18830
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
18831
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
18832
|
+
}
|
18833
|
+
}
|
18834
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
|
18835
|
+
opacity: 1;
|
18836
|
+
}.v-btn-group {
|
18544
18837
|
display: inline-flex;
|
18545
|
-
|
18546
|
-
|
18547
|
-
|
18548
|
-
|
18838
|
+
flex-wrap: nowrap;
|
18839
|
+
max-width: 100%;
|
18840
|
+
min-width: 0;
|
18841
|
+
overflow: hidden;
|
18842
|
+
vertical-align: middle;
|
18549
18843
|
}
|
18550
|
-
.
|
18551
|
-
|
18844
|
+
.v-btn-group {
|
18845
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18846
|
+
border-style: solid;
|
18847
|
+
border-width: 0;
|
18848
|
+
}
|
18849
|
+
.v-btn-group--border {
|
18850
|
+
border-width: thin;
|
18851
|
+
box-shadow: none;
|
18852
|
+
}
|
18853
|
+
.v-btn-group {
|
18854
|
+
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));
|
18855
|
+
}
|
18856
|
+
.v-btn-group {
|
18857
|
+
border-radius: 4px;
|
18858
|
+
}
|
18859
|
+
.v-btn-group {
|
18860
|
+
background: transparent;
|
18861
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18862
|
+
}
|
18863
|
+
.v-btn-group--density-default.v-btn-group {
|
18864
|
+
height: 48px;
|
18552
18865
|
}
|
18553
18866
|
|
18554
|
-
.v-
|
18555
|
-
|
18867
|
+
.v-btn-group--density-comfortable.v-btn-group {
|
18868
|
+
height: 40px;
|
18869
|
+
}
|
18870
|
+
|
18871
|
+
.v-btn-group--density-compact.v-btn-group {
|
18872
|
+
height: 36px;
|
18873
|
+
}
|
18874
|
+
|
18875
|
+
.v-btn-group .v-btn {
|
18876
|
+
border-radius: 0;
|
18877
|
+
border-color: inherit;
|
18878
|
+
}
|
18879
|
+
.v-btn-group .v-btn:not(:last-child) {
|
18880
|
+
border-inline-end: none;
|
18881
|
+
}
|
18882
|
+
.v-btn-group .v-btn:not(:first-child) {
|
18883
|
+
border-inline-start: none;
|
18884
|
+
}
|
18885
|
+
.v-btn-group .v-btn:first-child {
|
18886
|
+
border-start-start-radius: inherit;
|
18887
|
+
border-end-start-radius: inherit;
|
18888
|
+
}
|
18889
|
+
.v-btn-group .v-btn:last-child {
|
18890
|
+
border-start-end-radius: inherit;
|
18891
|
+
border-end-end-radius: inherit;
|
18892
|
+
}
|
18893
|
+
.v-btn-group--divided .v-btn:not(:last-child) {
|
18894
|
+
border-inline-end-width: thin;
|
18895
|
+
border-inline-end-style: solid;
|
18896
|
+
border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18897
|
+
}
|
18898
|
+
.v-btn-group--tile {
|
18556
18899
|
border-radius: 0;
|
18900
|
+
}.v-carousel {
|
18901
|
+
overflow: hidden;
|
18902
|
+
position: relative;
|
18903
|
+
width: 100%;
|
18904
|
+
}
|
18905
|
+
.v-carousel__controls {
|
18906
|
+
align-items: center;
|
18907
|
+
bottom: 0;
|
18908
|
+
display: flex;
|
18909
|
+
height: 50px;
|
18910
|
+
justify-content: center;
|
18911
|
+
list-style-type: none;
|
18912
|
+
position: absolute;
|
18913
|
+
width: 100%;
|
18914
|
+
z-index: 1;
|
18915
|
+
}
|
18916
|
+
.v-carousel__controls {
|
18917
|
+
background: rgba(var(--v-theme-surface-variant), 0.3);
|
18918
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
18919
|
+
}
|
18920
|
+
.v-carousel__controls > .v-item-group {
|
18557
18921
|
flex: 0 1 auto;
|
18922
|
+
}
|
18923
|
+
.v-carousel__controls__item {
|
18924
|
+
margin: 0 8px;
|
18925
|
+
}
|
18926
|
+
.v-carousel__controls__item .v-icon {
|
18927
|
+
opacity: 0.5;
|
18928
|
+
}
|
18929
|
+
.v-carousel__controls__item--active .v-icon {
|
18930
|
+
opacity: 1;
|
18931
|
+
vertical-align: middle;
|
18932
|
+
}
|
18933
|
+
.v-carousel__controls__item:hover {
|
18934
|
+
background: none;
|
18935
|
+
}
|
18936
|
+
.v-carousel__controls__item:hover .v-icon {
|
18937
|
+
opacity: 0.8;
|
18938
|
+
}
|
18939
|
+
|
18940
|
+
.v-carousel__progress {
|
18941
|
+
margin: 0;
|
18942
|
+
position: absolute;
|
18943
|
+
bottom: 0;
|
18558
18944
|
left: 0;
|
18559
18945
|
right: 0;
|
18560
|
-
margin-inline: auto;
|
18561
|
-
margin-bottom: 0;
|
18562
|
-
transition-duration: 0.2s;
|
18563
|
-
width: 100%;
|
18564
|
-
max-width: 100%;
|
18565
|
-
overflow: visible;
|
18566
18946
|
}
|
18567
|
-
|
18568
|
-
|
18947
|
+
|
18948
|
+
.v-carousel-item {
|
18949
|
+
display: block;
|
18950
|
+
height: inherit;
|
18951
|
+
text-decoration: none;
|
18569
18952
|
}
|
18570
|
-
.v-
|
18571
|
-
|
18572
|
-
border-radius: 0;
|
18953
|
+
.v-carousel-item > .v-img {
|
18954
|
+
height: inherit;
|
18573
18955
|
}
|
18574
|
-
|
18575
|
-
|
18956
|
+
|
18957
|
+
.v-carousel--hide-delimiter-background .v-carousel__controls {
|
18958
|
+
background: transparent;
|
18576
18959
|
}
|
18577
|
-
|
18578
|
-
|
18579
|
-
|
18580
|
-
|
18960
|
+
|
18961
|
+
.v-carousel--vertical-delimiters .v-carousel__controls {
|
18962
|
+
flex-direction: column;
|
18963
|
+
height: 100% !important;
|
18964
|
+
width: 50px;
|
18581
18965
|
}.v-btn {
|
18582
18966
|
align-items: center;
|
18583
18967
|
border-radius: 4px;
|
@@ -19027,379 +19411,319 @@ html.overflow-y-hidden {
|
|
19027
19411
|
}
|
19028
19412
|
.v-pagination .v-pagination__item--is-active .v-btn__overlay {
|
19029
19413
|
opacity: var(--v-border-opacity);
|
19030
|
-
}.v-
|
19031
|
-
display:
|
19032
|
-
flex-wrap: nowrap;
|
19033
|
-
max-width: 100%;
|
19034
|
-
min-width: 0;
|
19414
|
+
}.v-card {
|
19415
|
+
display: block;
|
19035
19416
|
overflow: hidden;
|
19036
|
-
|
19417
|
+
overflow-wrap: break-word;
|
19418
|
+
position: relative;
|
19419
|
+
padding: 0;
|
19420
|
+
text-decoration: none;
|
19421
|
+
transition-duration: 0.28s;
|
19422
|
+
transition-property: box-shadow, opacity, background;
|
19423
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
19424
|
+
z-index: 0;
|
19037
19425
|
}
|
19038
|
-
.v-
|
19426
|
+
.v-card {
|
19039
19427
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19040
19428
|
border-style: solid;
|
19041
19429
|
border-width: 0;
|
19042
19430
|
}
|
19043
|
-
.v-
|
19431
|
+
.v-card--border {
|
19044
19432
|
border-width: thin;
|
19045
19433
|
box-shadow: none;
|
19046
19434
|
}
|
19047
|
-
.v-
|
19048
|
-
|
19049
|
-
}
|
19050
|
-
.v-btn-group {
|
19051
|
-
border-radius: 4px;
|
19052
|
-
}
|
19053
|
-
.v-btn-group {
|
19054
|
-
background: transparent;
|
19055
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
19056
|
-
}
|
19057
|
-
.v-btn-group--density-default.v-btn-group {
|
19058
|
-
height: 48px;
|
19059
|
-
}
|
19060
|
-
|
19061
|
-
.v-btn-group--density-comfortable.v-btn-group {
|
19062
|
-
height: 40px;
|
19063
|
-
}
|
19064
|
-
|
19065
|
-
.v-btn-group--density-compact.v-btn-group {
|
19066
|
-
height: 36px;
|
19067
|
-
}
|
19068
|
-
|
19069
|
-
.v-btn-group .v-btn {
|
19070
|
-
border-radius: 0;
|
19071
|
-
border-color: inherit;
|
19435
|
+
.v-card--absolute {
|
19436
|
+
position: absolute;
|
19072
19437
|
}
|
19073
|
-
.v-
|
19074
|
-
|
19438
|
+
.v-card--fixed {
|
19439
|
+
position: fixed;
|
19075
19440
|
}
|
19076
|
-
.v-
|
19077
|
-
border-
|
19441
|
+
.v-card {
|
19442
|
+
border-radius: 4px;
|
19078
19443
|
}
|
19079
|
-
.v-
|
19080
|
-
|
19081
|
-
border-end-start-radius: inherit;
|
19444
|
+
.v-card:hover > .v-card__overlay {
|
19445
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
19082
19446
|
}
|
19083
|
-
.v-
|
19084
|
-
|
19085
|
-
border-end-end-radius: inherit;
|
19447
|
+
.v-card:focus-visible > .v-card__overlay {
|
19448
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
19086
19449
|
}
|
19087
|
-
|
19088
|
-
|
19089
|
-
|
19090
|
-
|
19450
|
+
@supports not selector(:focus-visible) {
|
19451
|
+
.v-card:focus > .v-card__overlay {
|
19452
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
19453
|
+
}
|
19091
19454
|
}
|
19092
|
-
.v-
|
19093
|
-
border-radius: 0;
|
19094
|
-
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
19455
|
+
.v-card--active > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true] > .v-card__overlay {
|
19095
19456
|
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
19096
19457
|
}
|
19097
|
-
.v-
|
19458
|
+
.v-card--active:hover > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:hover > .v-card__overlay {
|
19098
19459
|
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
19099
19460
|
}
|
19100
|
-
.v-
|
19461
|
+
.v-card--active:focus-visible > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-card__overlay {
|
19101
19462
|
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19102
19463
|
}
|
19103
19464
|
@supports not selector(:focus-visible) {
|
19104
|
-
.v-
|
19105
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19106
|
-
}
|
19107
|
-
}
|
19108
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
|
19109
|
-
opacity: 1;
|
19110
|
-
}.v-banner {
|
19111
|
-
display: grid;
|
19112
|
-
flex: 1 1;
|
19113
|
-
font-size: 0.875rem;
|
19114
|
-
grid-template-areas: "prepend content actions";
|
19115
|
-
grid-template-columns: max-content auto max-content;
|
19116
|
-
grid-template-rows: max-content max-content;
|
19117
|
-
line-height: 1.6;
|
19118
|
-
overflow: hidden;
|
19119
|
-
padding-inline: 16px 8px;
|
19120
|
-
padding-top: 16px;
|
19121
|
-
padding-bottom: 16px;
|
19122
|
-
position: relative;
|
19123
|
-
width: 100%;
|
19124
|
-
}
|
19125
|
-
.v-banner {
|
19126
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19127
|
-
border-style: solid;
|
19128
|
-
border-width: 0 0 thin 0;
|
19129
|
-
}
|
19130
|
-
.v-banner--border {
|
19131
|
-
border-width: thin;
|
19132
|
-
box-shadow: none;
|
19133
|
-
}
|
19134
|
-
.v-banner {
|
19135
|
-
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
19136
|
-
}
|
19137
|
-
.v-banner--absolute {
|
19138
|
-
position: absolute;
|
19139
|
-
}
|
19140
|
-
.v-banner--fixed {
|
19141
|
-
position: fixed;
|
19142
|
-
}
|
19143
|
-
.v-banner--sticky {
|
19144
|
-
position: sticky;
|
19145
|
-
}
|
19146
|
-
.v-banner {
|
19147
|
-
border-radius: 0;
|
19148
|
-
}
|
19149
|
-
.v-banner {
|
19150
|
-
background: rgb(var(--v-theme-surface));
|
19151
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
19152
|
-
}
|
19153
|
-
.v-banner--rounded {
|
19154
|
-
border-radius: 4px;
|
19155
|
-
}
|
19156
|
-
.v-banner--stacked:not(.v-banner--one-line) {
|
19157
|
-
grid-template-areas: "prepend content" ". actions";
|
19158
|
-
}
|
19159
|
-
.v-banner--stacked .v-banner-text {
|
19160
|
-
padding-inline-end: 36px;
|
19161
|
-
}
|
19162
|
-
.v-banner--density-default .v-banner-actions {
|
19163
|
-
margin-bottom: -8px;
|
19164
|
-
}
|
19165
|
-
.v-banner--density-default.v-banner--one-line {
|
19166
|
-
padding-top: 8px;
|
19167
|
-
padding-bottom: 8px;
|
19168
|
-
}
|
19169
|
-
.v-banner--density-default.v-banner--one-line .v-banner-actions {
|
19170
|
-
margin-bottom: 0;
|
19171
|
-
}
|
19172
|
-
.v-banner--density-default.v-banner--one-line {
|
19173
|
-
padding-top: 10px;
|
19465
|
+
.v-card--active:focus > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus > .v-card__overlay {
|
19466
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19467
|
+
}
|
19174
19468
|
}
|
19175
|
-
.v-
|
19176
|
-
|
19177
|
-
|
19469
|
+
.v-card--variant-plain, .v-card--variant-outlined, .v-card--variant-text, .v-card--variant-tonal {
|
19470
|
+
background: transparent;
|
19471
|
+
color: inherit;
|
19178
19472
|
}
|
19179
|
-
.v-
|
19180
|
-
|
19181
|
-
padding-bottom: 16px;
|
19473
|
+
.v-card--variant-plain {
|
19474
|
+
opacity: 0.62;
|
19182
19475
|
}
|
19183
|
-
.v-
|
19184
|
-
|
19476
|
+
.v-card--variant-plain:focus, .v-card--variant-plain:hover {
|
19477
|
+
opacity: 1;
|
19185
19478
|
}
|
19186
|
-
|
19187
|
-
|
19188
|
-
margin-bottom: -4px;
|
19479
|
+
.v-card--variant-plain .v-card__overlay {
|
19480
|
+
display: none;
|
19189
19481
|
}
|
19190
|
-
.v-
|
19191
|
-
|
19192
|
-
|
19482
|
+
.v-card--variant-elevated, .v-card--variant-flat {
|
19483
|
+
background: rgb(var(--v-theme-surface));
|
19484
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
19193
19485
|
}
|
19194
|
-
.v-
|
19195
|
-
|
19486
|
+
.v-card--variant-elevated {
|
19487
|
+
box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
19196
19488
|
}
|
19197
|
-
.v-
|
19198
|
-
|
19199
|
-
padding-bottom: 12px;
|
19489
|
+
.v-card--variant-flat {
|
19490
|
+
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));
|
19200
19491
|
}
|
19201
|
-
.v-
|
19202
|
-
|
19203
|
-
padding-bottom: 12px;
|
19492
|
+
.v-card--variant-outlined {
|
19493
|
+
border: thin solid currentColor;
|
19204
19494
|
}
|
19205
|
-
.v-
|
19206
|
-
|
19495
|
+
.v-card--variant-text .v-card__overlay {
|
19496
|
+
background: currentColor;
|
19207
19497
|
}
|
19208
|
-
|
19209
|
-
|
19210
|
-
|
19498
|
+
.v-card--variant-tonal .v-card__underlay {
|
19499
|
+
background: currentColor;
|
19500
|
+
opacity: var(--v-activated-opacity);
|
19501
|
+
border-radius: inherit;
|
19502
|
+
top: 0;
|
19503
|
+
right: 0;
|
19504
|
+
bottom: 0;
|
19505
|
+
left: 0;
|
19506
|
+
pointer-events: none;
|
19211
19507
|
}
|
19212
|
-
.v-
|
19213
|
-
|
19214
|
-
padding-bottom: 0px;
|
19508
|
+
.v-card .v-card__underlay {
|
19509
|
+
position: absolute;
|
19215
19510
|
}
|
19216
|
-
.v-
|
19217
|
-
|
19511
|
+
.v-card--disabled {
|
19512
|
+
pointer-events: none;
|
19513
|
+
-webkit-user-select: none;
|
19514
|
+
user-select: none;
|
19218
19515
|
}
|
19219
|
-
.v-
|
19220
|
-
|
19221
|
-
padding-bottom: 8px;
|
19516
|
+
.v-card--disabled > :not(.v-card__loader) {
|
19517
|
+
opacity: 0.6;
|
19222
19518
|
}
|
19223
|
-
.v-
|
19224
|
-
|
19225
|
-
padding-bottom: 8px;
|
19519
|
+
.v-card--flat {
|
19520
|
+
box-shadow: none;
|
19226
19521
|
}
|
19227
|
-
.v-
|
19228
|
-
|
19522
|
+
.v-card--hover {
|
19523
|
+
cursor: pointer;
|
19229
19524
|
}
|
19230
|
-
|
19231
|
-
|
19525
|
+
.v-card--hover::before, .v-card--hover::after {
|
19526
|
+
border-radius: inherit;
|
19527
|
+
bottom: 0;
|
19528
|
+
content: "";
|
19529
|
+
display: block;
|
19530
|
+
left: 0;
|
19531
|
+
pointer-events: none;
|
19532
|
+
position: absolute;
|
19533
|
+
right: 0;
|
19232
19534
|
top: 0;
|
19233
|
-
|
19535
|
+
transition: inherit;
|
19234
19536
|
}
|
19235
|
-
|
19236
|
-
|
19237
|
-
|
19238
|
-
display: flex;
|
19239
|
-
grid-area: content;
|
19537
|
+
.v-card--hover::before {
|
19538
|
+
opacity: 1;
|
19539
|
+
z-index: -1;
|
19240
19540
|
}
|
19241
|
-
|
19242
|
-
.v-
|
19243
|
-
align-self: flex-start;
|
19244
|
-
grid-area: prepend;
|
19245
|
-
margin-inline-end: 24px;
|
19541
|
+
.v-card--hover::before {
|
19542
|
+
box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
19246
19543
|
}
|
19247
|
-
|
19248
|
-
|
19249
|
-
|
19250
|
-
display: flex;
|
19251
|
-
flex: 0 1;
|
19252
|
-
grid-area: actions;
|
19253
|
-
justify-content: flex-end;
|
19544
|
+
.v-card--hover::after {
|
19545
|
+
z-index: 1;
|
19546
|
+
opacity: 0;
|
19254
19547
|
}
|
19255
|
-
.v-
|
19256
|
-
|
19548
|
+
.v-card--hover::after {
|
19549
|
+
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));
|
19257
19550
|
}
|
19258
|
-
|
19259
|
-
|
19260
|
-
-webkit-box-orient: vertical;
|
19261
|
-
display: -webkit-box;
|
19262
|
-
padding-inline-end: 90px;
|
19263
|
-
overflow: hidden;
|
19551
|
+
.v-card--hover:hover::after {
|
19552
|
+
opacity: 1;
|
19264
19553
|
}
|
19265
|
-
.v-
|
19266
|
-
|
19554
|
+
.v-card--hover:hover::before {
|
19555
|
+
opacity: 0;
|
19267
19556
|
}
|
19268
|
-
.v-
|
19269
|
-
-
|
19557
|
+
.v-card--hover:hover {
|
19558
|
+
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));
|
19270
19559
|
}
|
19271
|
-
.v-
|
19272
|
-
|
19560
|
+
.v-card--link {
|
19561
|
+
cursor: pointer;
|
19273
19562
|
}
|
19274
|
-
|
19275
|
-
|
19276
|
-
|
19563
|
+
|
19564
|
+
.v-card-actions {
|
19565
|
+
align-items: center;
|
19277
19566
|
display: flex;
|
19567
|
+
flex: none;
|
19568
|
+
min-height: 52px;
|
19569
|
+
padding: 0.5rem;
|
19570
|
+
gap: 0.5rem;
|
19571
|
+
}
|
19572
|
+
|
19573
|
+
.v-card-item {
|
19278
19574
|
align-items: center;
|
19279
|
-
|
19280
|
-
|
19575
|
+
display: grid;
|
19576
|
+
flex: none;
|
19577
|
+
grid-template-areas: "prepend content append";
|
19578
|
+
grid-template-columns: max-content auto max-content;
|
19579
|
+
padding: 0.625rem 1rem;
|
19281
19580
|
}
|
19282
|
-
.v-
|
19283
|
-
|
19581
|
+
.v-card-item + .v-card-text {
|
19582
|
+
padding-top: 0;
|
19284
19583
|
}
|
19285
|
-
.v-
|
19286
|
-
|
19287
|
-
|
19584
|
+
.v-card-item__prepend, .v-card-item__append {
|
19585
|
+
align-items: center;
|
19586
|
+
display: flex;
|
19288
19587
|
}
|
19289
|
-
|
19290
|
-
|
19291
|
-
padding-
|
19292
|
-
padding-bottom: 12px;
|
19588
|
+
.v-card-item__prepend {
|
19589
|
+
grid-area: prepend;
|
19590
|
+
padding-inline-end: 0.5rem;
|
19293
19591
|
}
|
19294
|
-
|
19295
|
-
|
19296
|
-
padding-
|
19297
|
-
padding-bottom: 8px;
|
19592
|
+
.v-card-item__append {
|
19593
|
+
grid-area: append;
|
19594
|
+
padding-inline-start: 0.5rem;
|
19298
19595
|
}
|
19299
19596
|
|
19300
|
-
.v-
|
19301
|
-
align-
|
19302
|
-
|
19597
|
+
.v-card-item__content {
|
19598
|
+
align-self: center;
|
19599
|
+
grid-area: content;
|
19600
|
+
overflow: hidden;
|
19303
19601
|
}
|
19304
19602
|
|
19305
|
-
.v-
|
19306
|
-
|
19307
|
-
|
19308
|
-
|
19309
|
-
|
19310
|
-
|
19311
|
-
|
19603
|
+
.v-card-title {
|
19604
|
+
display: block;
|
19605
|
+
flex: none;
|
19606
|
+
font-size: 1.25rem;
|
19607
|
+
font-weight: 500;
|
19608
|
+
-webkit-hyphens: auto;
|
19609
|
+
hyphens: auto;
|
19610
|
+
letter-spacing: 0.0125em;
|
19611
|
+
min-width: 0;
|
19612
|
+
overflow-wrap: normal;
|
19613
|
+
overflow: hidden;
|
19614
|
+
padding: 0.5rem 1rem;
|
19615
|
+
text-overflow: ellipsis;
|
19616
|
+
text-transform: none;
|
19617
|
+
white-space: nowrap;
|
19618
|
+
word-break: normal;
|
19619
|
+
word-wrap: break-word;
|
19312
19620
|
}
|
19313
|
-
.v-
|
19314
|
-
|
19315
|
-
pointer-events: none;
|
19621
|
+
.v-card .v-card-title {
|
19622
|
+
line-height: 1.6;
|
19316
19623
|
}
|
19317
|
-
.v-
|
19318
|
-
|
19319
|
-
text-decoration: none;
|
19624
|
+
.v-card--density-comfortable .v-card-title {
|
19625
|
+
line-height: 1.75rem;
|
19320
19626
|
}
|
19321
|
-
.v-
|
19322
|
-
|
19627
|
+
.v-card--density-compact .v-card-title {
|
19628
|
+
line-height: 1.55rem;
|
19323
19629
|
}
|
19324
|
-
.v-
|
19325
|
-
|
19326
|
-
margin-inline: -4px 2px;
|
19630
|
+
.v-card-item .v-card-title {
|
19631
|
+
padding: 0;
|
19327
19632
|
}
|
19328
|
-
|
19329
|
-
.v-
|
19330
|
-
|
19331
|
-
padding: 0 8px;
|
19332
|
-
vertical-align: middle;
|
19333
|
-
}.v-checkbox.v-input {
|
19334
|
-
flex: 0 1 auto;
|
19633
|
+
.v-card-title + .v-card-text,
|
19634
|
+
.v-card-title + .v-card-actions {
|
19635
|
+
padding-top: 0;
|
19335
19636
|
}
|
19336
|
-
|
19337
|
-
|
19338
|
-
|
19637
|
+
|
19638
|
+
.v-card-subtitle {
|
19639
|
+
display: block;
|
19640
|
+
flex: none;
|
19641
|
+
font-size: 0.875rem;
|
19642
|
+
font-weight: 400;
|
19643
|
+
letter-spacing: 0.0178571429em;
|
19644
|
+
opacity: var(--v-card-subtitle-opacity, var(--v-medium-emphasis-opacity));
|
19339
19645
|
overflow: hidden;
|
19340
|
-
|
19341
|
-
|
19646
|
+
padding: 0 1rem;
|
19647
|
+
text-overflow: ellipsis;
|
19648
|
+
text-transform: none;
|
19649
|
+
white-space: nowrap;
|
19342
19650
|
}
|
19343
|
-
.v-
|
19344
|
-
|
19345
|
-
bottom: 0;
|
19346
|
-
display: flex;
|
19347
|
-
height: 50px;
|
19348
|
-
justify-content: center;
|
19349
|
-
list-style-type: none;
|
19350
|
-
position: absolute;
|
19351
|
-
width: 100%;
|
19352
|
-
z-index: 1;
|
19651
|
+
.v-card .v-card-subtitle {
|
19652
|
+
line-height: 1.425;
|
19353
19653
|
}
|
19354
|
-
.v-
|
19355
|
-
|
19356
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
19654
|
+
.v-card--density-comfortable .v-card-subtitle {
|
19655
|
+
line-height: 1.125rem;
|
19357
19656
|
}
|
19358
|
-
.v-
|
19359
|
-
|
19657
|
+
.v-card--density-compact .v-card-subtitle {
|
19658
|
+
line-height: 1rem;
|
19360
19659
|
}
|
19361
|
-
.v-
|
19362
|
-
|
19660
|
+
.v-card-item .v-card-subtitle {
|
19661
|
+
padding: 0 0 0.25rem;
|
19363
19662
|
}
|
19364
|
-
|
19365
|
-
|
19663
|
+
|
19664
|
+
.v-card-text {
|
19665
|
+
flex: 1 1 auto;
|
19666
|
+
font-size: 0.875rem;
|
19667
|
+
font-weight: 400;
|
19668
|
+
letter-spacing: 0.0178571429em;
|
19669
|
+
opacity: var(--v-card-text-opacity, 1);
|
19670
|
+
padding: 1rem;
|
19671
|
+
text-transform: none;
|
19366
19672
|
}
|
19367
|
-
.v-
|
19368
|
-
|
19369
|
-
vertical-align: middle;
|
19673
|
+
.v-card .v-card-text {
|
19674
|
+
line-height: 1.425;
|
19370
19675
|
}
|
19371
|
-
.v-
|
19372
|
-
|
19676
|
+
.v-card--density-comfortable .v-card-text {
|
19677
|
+
line-height: 1.2rem;
|
19373
19678
|
}
|
19374
|
-
.v-
|
19375
|
-
|
19679
|
+
.v-card--density-compact .v-card-text {
|
19680
|
+
line-height: 1.15rem;
|
19376
19681
|
}
|
19377
19682
|
|
19378
|
-
.v-
|
19379
|
-
|
19380
|
-
|
19381
|
-
|
19683
|
+
.v-card__image {
|
19684
|
+
display: flex;
|
19685
|
+
height: 100%;
|
19686
|
+
flex: 1 1 auto;
|
19382
19687
|
left: 0;
|
19383
|
-
|
19688
|
+
overflow: hidden;
|
19689
|
+
position: absolute;
|
19690
|
+
top: 0;
|
19691
|
+
width: 100%;
|
19692
|
+
z-index: -1;
|
19384
19693
|
}
|
19385
19694
|
|
19386
|
-
.v-
|
19387
|
-
|
19388
|
-
|
19389
|
-
|
19390
|
-
}
|
19391
|
-
.v-carousel-item > .v-img {
|
19392
|
-
height: inherit;
|
19695
|
+
.v-card__content {
|
19696
|
+
border-radius: inherit;
|
19697
|
+
overflow: hidden;
|
19698
|
+
position: relative;
|
19393
19699
|
}
|
19394
19700
|
|
19395
|
-
.v-
|
19396
|
-
|
19701
|
+
.v-card__loader {
|
19702
|
+
bottom: auto;
|
19703
|
+
top: 0;
|
19704
|
+
left: 0;
|
19705
|
+
position: absolute;
|
19706
|
+
right: 0;
|
19707
|
+
width: 100%;
|
19708
|
+
z-index: 1;
|
19397
19709
|
}
|
19398
19710
|
|
19399
|
-
.v-
|
19400
|
-
|
19401
|
-
|
19402
|
-
|
19711
|
+
.v-card__overlay {
|
19712
|
+
background-color: currentColor;
|
19713
|
+
border-radius: inherit;
|
19714
|
+
position: absolute;
|
19715
|
+
top: 0;
|
19716
|
+
right: 0;
|
19717
|
+
bottom: 0;
|
19718
|
+
left: 0;
|
19719
|
+
pointer-events: none;
|
19720
|
+
opacity: 0;
|
19721
|
+
transition: opacity 0.2s ease-in-out;
|
19722
|
+
}.v-checkbox.v-input {
|
19723
|
+
flex: 0 1 auto;
|
19724
|
+
}
|
19725
|
+
.v-checkbox .v-selection-control {
|
19726
|
+
min-height: var(--v-input-control-height);
|
19403
19727
|
}.v-chip {
|
19404
19728
|
align-items: center;
|
19405
19729
|
display: inline-flex;
|
@@ -19659,250 +19983,82 @@ html.overflow-y-hidden {
|
|
19659
19983
|
.v-chip.v-chip--size-x-large .v-chip__append + .v-chip__close {
|
19660
19984
|
margin-inline-start: 17px;
|
19661
19985
|
}
|
19662
|
-
|
19663
|
-
.v-chip.v-chip--density-default {
|
19664
|
-
height: calc(var(--v-chip-height) + 0px);
|
19665
|
-
}
|
19666
|
-
|
19667
|
-
.v-chip.v-chip--density-comfortable {
|
19668
|
-
height: calc(var(--v-chip-height) + -4px);
|
19669
|
-
}
|
19670
|
-
|
19671
|
-
.v-chip.v-chip--density-compact {
|
19672
|
-
height: calc(var(--v-chip-height) + -8px);
|
19673
|
-
}
|
19674
|
-
|
19675
|
-
.v-chip {
|
19676
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19677
|
-
border-style: solid;
|
19678
|
-
border-width: 0;
|
19679
|
-
}
|
19680
|
-
.v-chip:hover > .v-chip__overlay {
|
19681
|
-
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
19682
|
-
}
|
19683
|
-
.v-chip:focus-visible > .v-chip__overlay {
|
19684
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
19685
|
-
}
|
19686
|
-
@supports not selector(:focus-visible) {
|
19687
|
-
.v-chip:focus > .v-chip__overlay {
|
19688
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
19689
|
-
}
|
19690
|
-
}
|
19691
|
-
.v-chip--active > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true] > .v-chip__overlay {
|
19692
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
19693
|
-
}
|
19694
|
-
.v-chip--active:hover > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true]:hover > .v-chip__overlay {
|
19695
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
19696
|
-
}
|
19697
|
-
.v-chip--active:focus-visible > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-chip__overlay {
|
19698
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19699
|
-
}
|
19700
|
-
@supports not selector(:focus-visible) {
|
19701
|
-
.v-chip--active:focus > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true]:focus > .v-chip__overlay {
|
19702
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19703
|
-
}
|
19704
|
-
}
|
19705
|
-
.v-chip {
|
19706
|
-
border-radius: 9999px;
|
19707
|
-
}
|
19708
|
-
.v-chip--variant-plain, .v-chip--variant-outlined, .v-chip--variant-text, .v-chip--variant-tonal {
|
19709
|
-
background: transparent;
|
19710
|
-
color: inherit;
|
19711
|
-
}
|
19712
|
-
.v-chip--variant-plain {
|
19713
|
-
opacity: 0.26;
|
19714
|
-
}
|
19715
|
-
.v-chip--variant-plain:focus, .v-chip--variant-plain:hover {
|
19716
|
-
opacity: 1;
|
19717
|
-
}
|
19718
|
-
.v-chip--variant-plain .v-chip__overlay {
|
19719
|
-
display: none;
|
19720
|
-
}
|
19721
|
-
.v-chip--variant-elevated, .v-chip--variant-flat {
|
19722
|
-
background: rgb(var(--v-theme-surface-variant));
|
19723
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
19724
|
-
}
|
19725
|
-
.v-chip--variant-elevated {
|
19726
|
-
box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
19727
|
-
}
|
19728
|
-
.v-chip--variant-flat {
|
19729
|
-
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));
|
19730
|
-
}
|
19731
|
-
.v-chip--variant-outlined {
|
19732
|
-
border: thin solid currentColor;
|
19733
|
-
}
|
19734
|
-
.v-chip--variant-text .v-chip__overlay {
|
19735
|
-
background: currentColor;
|
19736
|
-
}
|
19737
|
-
.v-chip--variant-tonal .v-chip__underlay {
|
19738
|
-
background: currentColor;
|
19739
|
-
opacity: var(--v-activated-opacity);
|
19740
|
-
border-radius: inherit;
|
19741
|
-
top: 0;
|
19742
|
-
right: 0;
|
19743
|
-
bottom: 0;
|
19744
|
-
left: 0;
|
19745
|
-
pointer-events: none;
|
19746
|
-
}
|
19747
|
-
.v-chip .v-chip__underlay {
|
19748
|
-
position: absolute;
|
19749
|
-
}
|
19750
|
-
.v-chip--border {
|
19751
|
-
border-width: thin;
|
19752
|
-
}
|
19753
|
-
.v-chip--link {
|
19754
|
-
cursor: pointer;
|
19755
|
-
}
|
19756
|
-
.v-chip--link, .v-chip--filter {
|
19757
|
-
-webkit-user-select: none;
|
19758
|
-
user-select: none;
|
19759
|
-
}
|
19760
|
-
.v-chip--label {
|
19761
|
-
border-radius: 4px;
|
19762
|
-
}
|
19763
|
-
|
19764
|
-
.v-chip__content {
|
19765
|
-
align-items: center;
|
19766
|
-
display: inline-flex;
|
19767
|
-
}
|
19768
|
-
.v-autocomplete__selection .v-chip__content, .v-combobox__selection .v-chip__content, .v-select__selection .v-chip__content {
|
19769
|
-
overflow: hidden;
|
19770
|
-
}
|
19771
|
-
|
19772
|
-
.v-chip__filter,
|
19773
|
-
.v-chip__prepend,
|
19774
|
-
.v-chip__append,
|
19775
|
-
.v-chip__close {
|
19776
|
-
align-items: center;
|
19777
|
-
display: inline-flex;
|
19778
|
-
}
|
19779
|
-
|
19780
|
-
.v-chip__close {
|
19781
|
-
cursor: pointer;
|
19782
|
-
flex: 0 1 auto;
|
19783
|
-
font-size: 18px;
|
19784
|
-
max-height: 18px;
|
19785
|
-
max-width: 18px;
|
19786
|
-
-webkit-user-select: none;
|
19787
|
-
user-select: none;
|
19788
|
-
}
|
19789
|
-
.v-chip__close .v-icon {
|
19790
|
-
font-size: inherit;
|
19791
|
-
}
|
19792
|
-
|
19793
|
-
.v-chip__filter {
|
19794
|
-
transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
|
19795
|
-
}
|
19796
|
-
|
19797
|
-
.v-chip__overlay {
|
19798
|
-
background-color: currentColor;
|
19799
|
-
border-radius: inherit;
|
19800
|
-
pointer-events: none;
|
19801
|
-
opacity: 0;
|
19802
|
-
transition: opacity 0.2s ease-in-out;
|
19803
|
-
}
|
19804
|
-
.v-chip__overlay {
|
19805
|
-
position: absolute;
|
19806
|
-
top: 0;
|
19807
|
-
left: 0;
|
19808
|
-
width: 100%;
|
19809
|
-
height: 100%;
|
19986
|
+
|
19987
|
+
.v-chip.v-chip--density-default {
|
19988
|
+
height: calc(var(--v-chip-height) + 0px);
|
19810
19989
|
}
|
19811
19990
|
|
19812
|
-
.v-chip--
|
19813
|
-
|
19814
|
-
pointer-events: none;
|
19815
|
-
-webkit-user-select: none;
|
19816
|
-
user-select: none;
|
19991
|
+
.v-chip.v-chip--density-comfortable {
|
19992
|
+
height: calc(var(--v-chip-height) + -4px);
|
19817
19993
|
}
|
19818
19994
|
|
19819
|
-
.v-chip--
|
19820
|
-
|
19821
|
-
}.v-card {
|
19822
|
-
display: block;
|
19823
|
-
overflow: hidden;
|
19824
|
-
overflow-wrap: break-word;
|
19825
|
-
position: relative;
|
19826
|
-
padding: 0;
|
19827
|
-
text-decoration: none;
|
19828
|
-
transition-duration: 0.28s;
|
19829
|
-
transition-property: box-shadow, opacity, background;
|
19830
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
19831
|
-
z-index: 0;
|
19995
|
+
.v-chip.v-chip--density-compact {
|
19996
|
+
height: calc(var(--v-chip-height) + -8px);
|
19832
19997
|
}
|
19833
|
-
|
19998
|
+
|
19999
|
+
.v-chip {
|
19834
20000
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19835
20001
|
border-style: solid;
|
19836
20002
|
border-width: 0;
|
19837
20003
|
}
|
19838
|
-
.v-
|
19839
|
-
border-width: thin;
|
19840
|
-
box-shadow: none;
|
19841
|
-
}
|
19842
|
-
.v-card--absolute {
|
19843
|
-
position: absolute;
|
19844
|
-
}
|
19845
|
-
.v-card--fixed {
|
19846
|
-
position: fixed;
|
19847
|
-
}
|
19848
|
-
.v-card {
|
19849
|
-
border-radius: 4px;
|
19850
|
-
}
|
19851
|
-
.v-card:hover > .v-card__overlay {
|
20004
|
+
.v-chip:hover > .v-chip__overlay {
|
19852
20005
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
19853
20006
|
}
|
19854
|
-
.v-
|
20007
|
+
.v-chip:focus-visible > .v-chip__overlay {
|
19855
20008
|
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
19856
20009
|
}
|
19857
20010
|
@supports not selector(:focus-visible) {
|
19858
|
-
.v-
|
20011
|
+
.v-chip:focus > .v-chip__overlay {
|
19859
20012
|
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
19860
20013
|
}
|
19861
20014
|
}
|
19862
|
-
.v-
|
20015
|
+
.v-chip--active > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true] > .v-chip__overlay {
|
19863
20016
|
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
19864
20017
|
}
|
19865
|
-
.v-
|
20018
|
+
.v-chip--active:hover > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true]:hover > .v-chip__overlay {
|
19866
20019
|
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
19867
20020
|
}
|
19868
|
-
.v-
|
20021
|
+
.v-chip--active:focus-visible > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-chip__overlay {
|
19869
20022
|
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19870
20023
|
}
|
19871
20024
|
@supports not selector(:focus-visible) {
|
19872
|
-
.v-
|
20025
|
+
.v-chip--active:focus > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true]:focus > .v-chip__overlay {
|
19873
20026
|
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19874
20027
|
}
|
19875
20028
|
}
|
19876
|
-
.v-
|
20029
|
+
.v-chip {
|
20030
|
+
border-radius: 9999px;
|
20031
|
+
}
|
20032
|
+
.v-chip--variant-plain, .v-chip--variant-outlined, .v-chip--variant-text, .v-chip--variant-tonal {
|
19877
20033
|
background: transparent;
|
19878
20034
|
color: inherit;
|
19879
20035
|
}
|
19880
|
-
.v-
|
19881
|
-
opacity: 0.
|
20036
|
+
.v-chip--variant-plain {
|
20037
|
+
opacity: 0.26;
|
19882
20038
|
}
|
19883
|
-
.v-
|
20039
|
+
.v-chip--variant-plain:focus, .v-chip--variant-plain:hover {
|
19884
20040
|
opacity: 1;
|
19885
20041
|
}
|
19886
|
-
.v-
|
20042
|
+
.v-chip--variant-plain .v-chip__overlay {
|
19887
20043
|
display: none;
|
19888
20044
|
}
|
19889
|
-
.v-
|
19890
|
-
background: rgb(var(--v-theme-surface));
|
19891
|
-
color:
|
20045
|
+
.v-chip--variant-elevated, .v-chip--variant-flat {
|
20046
|
+
background: rgb(var(--v-theme-surface-variant));
|
20047
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
19892
20048
|
}
|
19893
|
-
.v-
|
20049
|
+
.v-chip--variant-elevated {
|
19894
20050
|
box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
19895
20051
|
}
|
19896
|
-
.v-
|
20052
|
+
.v-chip--variant-flat {
|
19897
20053
|
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
19898
20054
|
}
|
19899
|
-
.v-
|
20055
|
+
.v-chip--variant-outlined {
|
19900
20056
|
border: thin solid currentColor;
|
19901
20057
|
}
|
19902
|
-
.v-
|
20058
|
+
.v-chip--variant-text .v-chip__overlay {
|
19903
20059
|
background: currentColor;
|
19904
20060
|
}
|
19905
|
-
.v-
|
20061
|
+
.v-chip--variant-tonal .v-chip__underlay {
|
19906
20062
|
background: currentColor;
|
19907
20063
|
opacity: var(--v-activated-opacity);
|
19908
20064
|
border-radius: inherit;
|
@@ -19912,220 +20068,80 @@ html.overflow-y-hidden {
|
|
19912
20068
|
left: 0;
|
19913
20069
|
pointer-events: none;
|
19914
20070
|
}
|
19915
|
-
.v-
|
19916
|
-
position: absolute;
|
19917
|
-
}
|
19918
|
-
.v-card--disabled {
|
19919
|
-
pointer-events: none;
|
19920
|
-
-webkit-user-select: none;
|
19921
|
-
user-select: none;
|
19922
|
-
}
|
19923
|
-
.v-card--disabled > :not(.v-card__loader) {
|
19924
|
-
opacity: 0.6;
|
19925
|
-
}
|
19926
|
-
.v-card--flat {
|
19927
|
-
box-shadow: none;
|
19928
|
-
}
|
19929
|
-
.v-card--hover {
|
19930
|
-
cursor: pointer;
|
19931
|
-
}
|
19932
|
-
.v-card--hover::before, .v-card--hover::after {
|
19933
|
-
border-radius: inherit;
|
19934
|
-
bottom: 0;
|
19935
|
-
content: "";
|
19936
|
-
display: block;
|
19937
|
-
left: 0;
|
19938
|
-
pointer-events: none;
|
20071
|
+
.v-chip .v-chip__underlay {
|
19939
20072
|
position: absolute;
|
19940
|
-
right: 0;
|
19941
|
-
top: 0;
|
19942
|
-
transition: inherit;
|
19943
|
-
}
|
19944
|
-
.v-card--hover::before {
|
19945
|
-
opacity: 1;
|
19946
|
-
z-index: -1;
|
19947
|
-
}
|
19948
|
-
.v-card--hover::before {
|
19949
|
-
box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
19950
|
-
}
|
19951
|
-
.v-card--hover::after {
|
19952
|
-
z-index: 1;
|
19953
|
-
opacity: 0;
|
19954
|
-
}
|
19955
|
-
.v-card--hover::after {
|
19956
|
-
box-shadow: 0px 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
19957
|
-
}
|
19958
|
-
.v-card--hover:hover::after {
|
19959
|
-
opacity: 1;
|
19960
|
-
}
|
19961
|
-
.v-card--hover:hover::before {
|
19962
|
-
opacity: 0;
|
19963
20073
|
}
|
19964
|
-
.v-
|
19965
|
-
|
20074
|
+
.v-chip--border {
|
20075
|
+
border-width: thin;
|
19966
20076
|
}
|
19967
|
-
.v-
|
20077
|
+
.v-chip--link {
|
19968
20078
|
cursor: pointer;
|
19969
20079
|
}
|
19970
|
-
|
19971
|
-
|
19972
|
-
|
19973
|
-
display: flex;
|
19974
|
-
flex: none;
|
19975
|
-
min-height: 52px;
|
19976
|
-
padding: 0.5rem;
|
19977
|
-
gap: 0.5rem;
|
19978
|
-
}
|
19979
|
-
|
19980
|
-
.v-card-item {
|
19981
|
-
align-items: center;
|
19982
|
-
display: grid;
|
19983
|
-
flex: none;
|
19984
|
-
grid-template-areas: "prepend content append";
|
19985
|
-
grid-template-columns: max-content auto max-content;
|
19986
|
-
padding: 0.625rem 1rem;
|
19987
|
-
}
|
19988
|
-
.v-card-item + .v-card-text {
|
19989
|
-
padding-top: 0;
|
19990
|
-
}
|
19991
|
-
.v-card-item__prepend, .v-card-item__append {
|
19992
|
-
align-items: center;
|
19993
|
-
display: flex;
|
19994
|
-
}
|
19995
|
-
.v-card-item__prepend {
|
19996
|
-
grid-area: prepend;
|
19997
|
-
padding-inline-end: 0.5rem;
|
19998
|
-
}
|
19999
|
-
.v-card-item__append {
|
20000
|
-
grid-area: append;
|
20001
|
-
padding-inline-start: 0.5rem;
|
20002
|
-
}
|
20003
|
-
|
20004
|
-
.v-card-item__content {
|
20005
|
-
align-self: center;
|
20006
|
-
grid-area: content;
|
20007
|
-
overflow: hidden;
|
20008
|
-
}
|
20009
|
-
|
20010
|
-
.v-card-title {
|
20011
|
-
display: block;
|
20012
|
-
flex: none;
|
20013
|
-
font-size: 1.25rem;
|
20014
|
-
font-weight: 500;
|
20015
|
-
-webkit-hyphens: auto;
|
20016
|
-
hyphens: auto;
|
20017
|
-
letter-spacing: 0.0125em;
|
20018
|
-
min-width: 0;
|
20019
|
-
overflow-wrap: normal;
|
20020
|
-
overflow: hidden;
|
20021
|
-
padding: 0.5rem 1rem;
|
20022
|
-
text-overflow: ellipsis;
|
20023
|
-
text-transform: none;
|
20024
|
-
white-space: nowrap;
|
20025
|
-
word-break: normal;
|
20026
|
-
word-wrap: break-word;
|
20027
|
-
}
|
20028
|
-
.v-card .v-card-title {
|
20029
|
-
line-height: 1.6;
|
20030
|
-
}
|
20031
|
-
.v-card--density-comfortable .v-card-title {
|
20032
|
-
line-height: 1.75rem;
|
20033
|
-
}
|
20034
|
-
.v-card--density-compact .v-card-title {
|
20035
|
-
line-height: 1.55rem;
|
20036
|
-
}
|
20037
|
-
.v-card-item .v-card-title {
|
20038
|
-
padding: 0;
|
20039
|
-
}
|
20040
|
-
.v-card-title + .v-card-text,
|
20041
|
-
.v-card-title + .v-card-actions {
|
20042
|
-
padding-top: 0;
|
20043
|
-
}
|
20044
|
-
|
20045
|
-
.v-card-subtitle {
|
20046
|
-
display: block;
|
20047
|
-
flex: none;
|
20048
|
-
font-size: 0.875rem;
|
20049
|
-
font-weight: 400;
|
20050
|
-
letter-spacing: 0.0178571429em;
|
20051
|
-
opacity: var(--v-card-subtitle-opacity, var(--v-medium-emphasis-opacity));
|
20052
|
-
overflow: hidden;
|
20053
|
-
padding: 0 1rem;
|
20054
|
-
text-overflow: ellipsis;
|
20055
|
-
text-transform: none;
|
20056
|
-
white-space: nowrap;
|
20057
|
-
}
|
20058
|
-
.v-card .v-card-subtitle {
|
20059
|
-
line-height: 1.425;
|
20060
|
-
}
|
20061
|
-
.v-card--density-comfortable .v-card-subtitle {
|
20062
|
-
line-height: 1.125rem;
|
20063
|
-
}
|
20064
|
-
.v-card--density-compact .v-card-subtitle {
|
20065
|
-
line-height: 1rem;
|
20066
|
-
}
|
20067
|
-
.v-card-item .v-card-subtitle {
|
20068
|
-
padding: 0 0 0.25rem;
|
20069
|
-
}
|
20070
|
-
|
20071
|
-
.v-card-text {
|
20072
|
-
flex: 1 1 auto;
|
20073
|
-
font-size: 0.875rem;
|
20074
|
-
font-weight: 400;
|
20075
|
-
letter-spacing: 0.0178571429em;
|
20076
|
-
opacity: var(--v-card-text-opacity, 1);
|
20077
|
-
padding: 1rem;
|
20078
|
-
text-transform: none;
|
20080
|
+
.v-chip--link, .v-chip--filter {
|
20081
|
+
-webkit-user-select: none;
|
20082
|
+
user-select: none;
|
20079
20083
|
}
|
20080
|
-
.v-
|
20081
|
-
|
20084
|
+
.v-chip--label {
|
20085
|
+
border-radius: 4px;
|
20082
20086
|
}
|
20083
|
-
|
20084
|
-
|
20087
|
+
|
20088
|
+
.v-chip__content {
|
20089
|
+
align-items: center;
|
20090
|
+
display: inline-flex;
|
20085
20091
|
}
|
20086
|
-
.v-
|
20087
|
-
|
20092
|
+
.v-autocomplete__selection .v-chip__content, .v-combobox__selection .v-chip__content, .v-select__selection .v-chip__content {
|
20093
|
+
overflow: hidden;
|
20088
20094
|
}
|
20089
20095
|
|
20090
|
-
.v-
|
20091
|
-
|
20092
|
-
|
20093
|
-
|
20094
|
-
|
20095
|
-
|
20096
|
-
position: absolute;
|
20097
|
-
top: 0;
|
20098
|
-
width: 100%;
|
20099
|
-
z-index: -1;
|
20096
|
+
.v-chip__filter,
|
20097
|
+
.v-chip__prepend,
|
20098
|
+
.v-chip__append,
|
20099
|
+
.v-chip__close {
|
20100
|
+
align-items: center;
|
20101
|
+
display: inline-flex;
|
20100
20102
|
}
|
20101
20103
|
|
20102
|
-
.v-
|
20103
|
-
|
20104
|
-
|
20105
|
-
|
20104
|
+
.v-chip__close {
|
20105
|
+
cursor: pointer;
|
20106
|
+
flex: 0 1 auto;
|
20107
|
+
font-size: 18px;
|
20108
|
+
max-height: 18px;
|
20109
|
+
max-width: 18px;
|
20110
|
+
-webkit-user-select: none;
|
20111
|
+
user-select: none;
|
20112
|
+
}
|
20113
|
+
.v-chip__close .v-icon {
|
20114
|
+
font-size: inherit;
|
20106
20115
|
}
|
20107
20116
|
|
20108
|
-
.v-
|
20109
|
-
|
20110
|
-
top: 0;
|
20111
|
-
left: 0;
|
20112
|
-
position: absolute;
|
20113
|
-
right: 0;
|
20114
|
-
width: 100%;
|
20115
|
-
z-index: 1;
|
20117
|
+
.v-chip__filter {
|
20118
|
+
transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
|
20116
20119
|
}
|
20117
20120
|
|
20118
|
-
.v-
|
20121
|
+
.v-chip__overlay {
|
20119
20122
|
background-color: currentColor;
|
20120
20123
|
border-radius: inherit;
|
20124
|
+
pointer-events: none;
|
20125
|
+
opacity: 0;
|
20126
|
+
transition: opacity 0.2s ease-in-out;
|
20127
|
+
}
|
20128
|
+
.v-chip__overlay {
|
20121
20129
|
position: absolute;
|
20122
20130
|
top: 0;
|
20123
|
-
right: 0;
|
20124
|
-
bottom: 0;
|
20125
20131
|
left: 0;
|
20132
|
+
width: 100%;
|
20133
|
+
height: 100%;
|
20134
|
+
}
|
20135
|
+
|
20136
|
+
.v-chip--disabled {
|
20137
|
+
opacity: 0.3;
|
20126
20138
|
pointer-events: none;
|
20127
|
-
|
20128
|
-
|
20139
|
+
-webkit-user-select: none;
|
20140
|
+
user-select: none;
|
20141
|
+
}
|
20142
|
+
|
20143
|
+
.v-chip--label {
|
20144
|
+
border-radius: 4px;
|
20129
20145
|
}.v-chip-group {
|
20130
20146
|
display: flex;
|
20131
20147
|
max-width: 100%;
|
@@ -20144,113 +20160,6 @@ html.overflow-y-hidden {
|
|
20144
20160
|
white-space: normal;
|
20145
20161
|
flex-wrap: wrap;
|
20146
20162
|
max-width: 100%;
|
20147
|
-
}.v-color-picker {
|
20148
|
-
align-self: flex-start;
|
20149
|
-
contain: content;
|
20150
|
-
width: 300px;
|
20151
|
-
}
|
20152
|
-
.v-color-picker.v-sheet.v-picker {
|
20153
|
-
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
20154
|
-
}
|
20155
|
-
.v-color-picker.v-sheet.v-picker {
|
20156
|
-
border-radius: 4px;
|
20157
|
-
}
|
20158
|
-
|
20159
|
-
.v-color-picker__controls {
|
20160
|
-
display: flex;
|
20161
|
-
flex-direction: column;
|
20162
|
-
padding: 16px;
|
20163
|
-
}
|
20164
|
-
|
20165
|
-
.v-color-picker--flat {
|
20166
|
-
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
20167
|
-
}
|
20168
|
-
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
20169
|
-
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
20170
|
-
}.v-combobox .v-field .v-text-field__prefix,
|
20171
|
-
.v-combobox .v-field .v-text-field__suffix,
|
20172
|
-
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
20173
|
-
cursor: text;
|
20174
|
-
}
|
20175
|
-
.v-combobox .v-field .v-field__input > input {
|
20176
|
-
flex: 1 1;
|
20177
|
-
}
|
20178
|
-
.v-combobox .v-field input {
|
20179
|
-
min-width: 64px;
|
20180
|
-
}
|
20181
|
-
.v-combobox .v-field:not(.v-field--focused) input {
|
20182
|
-
min-width: 0;
|
20183
|
-
}
|
20184
|
-
.v-combobox .v-field--dirty .v-combobox__selection {
|
20185
|
-
margin-inline-end: 2px;
|
20186
|
-
}
|
20187
|
-
.v-combobox .v-combobox__selection-text {
|
20188
|
-
overflow: hidden;
|
20189
|
-
text-overflow: ellipsis;
|
20190
|
-
white-space: nowrap;
|
20191
|
-
}
|
20192
|
-
|
20193
|
-
.v-combobox__content {
|
20194
|
-
overflow: hidden;
|
20195
|
-
}
|
20196
|
-
.v-combobox__content {
|
20197
|
-
box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
20198
|
-
}
|
20199
|
-
.v-combobox__content {
|
20200
|
-
border-radius: 4px;
|
20201
|
-
}
|
20202
|
-
.v-combobox__mask {
|
20203
|
-
background: rgb(var(--v-theme-surface-light));
|
20204
|
-
}
|
20205
|
-
.v-combobox__selection {
|
20206
|
-
display: inline-flex;
|
20207
|
-
align-items: center;
|
20208
|
-
height: 1.5rem;
|
20209
|
-
letter-spacing: inherit;
|
20210
|
-
line-height: inherit;
|
20211
|
-
max-width: calc(100% - 2px - 2px);
|
20212
|
-
}
|
20213
|
-
.v-combobox__selection:first-child {
|
20214
|
-
margin-inline-start: 0;
|
20215
|
-
}
|
20216
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
20217
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
20218
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
20219
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
20220
|
-
top: 0px;
|
20221
|
-
}
|
20222
|
-
.v-combobox--selecting-index .v-combobox__selection {
|
20223
|
-
opacity: var(--v-medium-emphasis-opacity);
|
20224
|
-
}
|
20225
|
-
.v-combobox--selecting-index .v-combobox__selection--selected {
|
20226
|
-
opacity: 1;
|
20227
|
-
}
|
20228
|
-
.v-combobox--selecting-index .v-field__input > input {
|
20229
|
-
caret-color: transparent;
|
20230
|
-
}
|
20231
|
-
.v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
|
20232
|
-
flex: 1 1;
|
20233
|
-
position: absolute;
|
20234
|
-
left: 0;
|
20235
|
-
right: 0;
|
20236
|
-
width: 100%;
|
20237
|
-
padding-inline: inherit;
|
20238
|
-
}
|
20239
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
|
20240
|
-
transition: none;
|
20241
|
-
}
|
20242
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
20243
|
-
opacity: 0;
|
20244
|
-
}
|
20245
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
|
20246
|
-
opacity: 0;
|
20247
|
-
}
|
20248
|
-
.v-combobox__menu-icon {
|
20249
|
-
margin-inline-start: 4px;
|
20250
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
20251
|
-
}
|
20252
|
-
.v-combobox--active-menu .v-combobox__menu-icon {
|
20253
|
-
transform: rotate(180deg);
|
20254
20163
|
}.v-container {
|
20255
20164
|
width: 100%;
|
20256
20165
|
padding: 16px;
|
@@ -20923,11 +20832,149 @@ html.overflow-y-hidden {
|
|
20923
20832
|
.offset-xxl-11 {
|
20924
20833
|
margin-inline-start: 91.6666666667%;
|
20925
20834
|
}
|
20835
|
+
}.v-combobox .v-field .v-text-field__prefix,
|
20836
|
+
.v-combobox .v-field .v-text-field__suffix,
|
20837
|
+
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
20838
|
+
cursor: text;
|
20839
|
+
}
|
20840
|
+
.v-combobox .v-field .v-field__input > input {
|
20841
|
+
flex: 1 1;
|
20842
|
+
}
|
20843
|
+
.v-combobox .v-field input {
|
20844
|
+
min-width: 64px;
|
20845
|
+
}
|
20846
|
+
.v-combobox .v-field:not(.v-field--focused) input {
|
20847
|
+
min-width: 0;
|
20848
|
+
}
|
20849
|
+
.v-combobox .v-field--dirty .v-combobox__selection {
|
20850
|
+
margin-inline-end: 2px;
|
20851
|
+
}
|
20852
|
+
.v-combobox .v-combobox__selection-text {
|
20853
|
+
overflow: hidden;
|
20854
|
+
text-overflow: ellipsis;
|
20855
|
+
white-space: nowrap;
|
20856
|
+
}
|
20857
|
+
|
20858
|
+
.v-combobox__content {
|
20859
|
+
overflow: hidden;
|
20860
|
+
}
|
20861
|
+
.v-combobox__content {
|
20862
|
+
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));
|
20863
|
+
}
|
20864
|
+
.v-combobox__content {
|
20865
|
+
border-radius: 4px;
|
20866
|
+
}
|
20867
|
+
.v-combobox__mask {
|
20868
|
+
background: rgb(var(--v-theme-surface-light));
|
20869
|
+
}
|
20870
|
+
.v-combobox__selection {
|
20871
|
+
display: inline-flex;
|
20872
|
+
align-items: center;
|
20873
|
+
height: 1.5rem;
|
20874
|
+
letter-spacing: inherit;
|
20875
|
+
line-height: inherit;
|
20876
|
+
max-width: calc(100% - 2px - 2px);
|
20877
|
+
}
|
20878
|
+
.v-combobox__selection:first-child {
|
20879
|
+
margin-inline-start: 0;
|
20880
|
+
}
|
20881
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
20882
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
20883
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
20884
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
20885
|
+
top: 0px;
|
20886
|
+
}
|
20887
|
+
.v-combobox--selecting-index .v-combobox__selection {
|
20888
|
+
opacity: var(--v-medium-emphasis-opacity);
|
20889
|
+
}
|
20890
|
+
.v-combobox--selecting-index .v-combobox__selection--selected {
|
20891
|
+
opacity: 1;
|
20892
|
+
}
|
20893
|
+
.v-combobox--selecting-index .v-field__input > input {
|
20894
|
+
caret-color: transparent;
|
20895
|
+
}
|
20896
|
+
.v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
|
20897
|
+
flex: 1 1;
|
20898
|
+
position: absolute;
|
20899
|
+
left: 0;
|
20900
|
+
right: 0;
|
20901
|
+
width: 100%;
|
20902
|
+
padding-inline: inherit;
|
20903
|
+
}
|
20904
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
|
20905
|
+
transition: none;
|
20906
|
+
}
|
20907
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
20908
|
+
opacity: 0;
|
20909
|
+
}
|
20910
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
|
20911
|
+
opacity: 0;
|
20912
|
+
}
|
20913
|
+
.v-combobox__menu-icon {
|
20914
|
+
margin-inline-start: 4px;
|
20915
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
20916
|
+
}
|
20917
|
+
.v-combobox--active-menu .v-combobox__menu-icon {
|
20918
|
+
transform: rotate(180deg);
|
20919
|
+
}.v-color-picker {
|
20920
|
+
align-self: flex-start;
|
20921
|
+
contain: content;
|
20922
|
+
width: 300px;
|
20923
|
+
}
|
20924
|
+
.v-color-picker.v-sheet.v-picker {
|
20925
|
+
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
20926
|
+
}
|
20927
|
+
.v-color-picker.v-sheet.v-picker {
|
20928
|
+
border-radius: 4px;
|
20929
|
+
}
|
20930
|
+
|
20931
|
+
.v-color-picker__controls {
|
20932
|
+
display: flex;
|
20933
|
+
flex-direction: column;
|
20934
|
+
padding: 16px;
|
20935
|
+
}
|
20936
|
+
|
20937
|
+
.v-color-picker--flat {
|
20938
|
+
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));
|
20939
|
+
}
|
20940
|
+
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
20941
|
+
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));
|
20926
20942
|
}.v-counter {
|
20927
20943
|
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
20928
20944
|
flex: 0 1 auto;
|
20929
20945
|
font-size: 12px;
|
20930
20946
|
transition-duration: 150ms;
|
20947
|
+
}.v-data-table-footer {
|
20948
|
+
align-items: center;
|
20949
|
+
display: flex;
|
20950
|
+
flex-wrap: wrap;
|
20951
|
+
justify-content: flex-end;
|
20952
|
+
padding: 8px 4px;
|
20953
|
+
}
|
20954
|
+
.v-data-table-footer__items-per-page {
|
20955
|
+
align-items: center;
|
20956
|
+
display: flex;
|
20957
|
+
justify-content: center;
|
20958
|
+
}
|
20959
|
+
.v-data-table-footer__items-per-page > span {
|
20960
|
+
padding-inline-end: 8px;
|
20961
|
+
}
|
20962
|
+
.v-data-table-footer__items-per-page > .v-select {
|
20963
|
+
width: 90px;
|
20964
|
+
}
|
20965
|
+
.v-data-table-footer__info {
|
20966
|
+
display: flex;
|
20967
|
+
justify-content: flex-end;
|
20968
|
+
min-width: 116px;
|
20969
|
+
padding: 0 16px;
|
20970
|
+
}
|
20971
|
+
.v-data-table-footer__paginationz {
|
20972
|
+
align-items: center;
|
20973
|
+
display: flex;
|
20974
|
+
margin-inline-start: 16px;
|
20975
|
+
}
|
20976
|
+
.v-data-table-footer__page {
|
20977
|
+
padding: 0 8px;
|
20931
20978
|
}.v-data-table {
|
20932
20979
|
width: 100%;
|
20933
20980
|
}
|
@@ -21115,37 +21162,123 @@ html.overflow-y-hidden {
|
|
21115
21162
|
}
|
21116
21163
|
.v-data-table__td-sort-icon-active {
|
21117
21164
|
color: rgba(var(--v-theme-on-surface));
|
21118
|
-
}.v-
|
21119
|
-
align-items: center;
|
21165
|
+
}.v-date-picker-controls {
|
21120
21166
|
display: flex;
|
21121
|
-
flex-wrap: wrap;
|
21122
|
-
justify-content: flex-end;
|
21123
|
-
padding: 8px 4px;
|
21124
|
-
}
|
21125
|
-
.v-data-table-footer__items-per-page {
|
21126
21167
|
align-items: center;
|
21127
|
-
|
21128
|
-
|
21168
|
+
justify-content: space-between;
|
21169
|
+
font-size: 0.875rem;
|
21170
|
+
height: var(--v-date-picker-controls-height, 56px);
|
21171
|
+
padding-top: 4px;
|
21172
|
+
padding-bottom: 4px;
|
21173
|
+
padding-inline-start: 6px;
|
21174
|
+
padding-inline-end: 12px;
|
21129
21175
|
}
|
21130
|
-
.v-
|
21131
|
-
|
21176
|
+
.v-date-picker-controls > .v-btn:first-child {
|
21177
|
+
text-transform: none;
|
21178
|
+
font-weight: 400;
|
21179
|
+
line-height: initial;
|
21180
|
+
letter-spacing: initial;
|
21132
21181
|
}
|
21133
|
-
.v-
|
21134
|
-
|
21182
|
+
.v-date-picker-controls--variant-classic {
|
21183
|
+
padding-inline-start: 12px;
|
21135
21184
|
}
|
21136
|
-
.v-
|
21185
|
+
.v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
|
21186
|
+
opacity: 0.7;
|
21187
|
+
}
|
21188
|
+
.v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
|
21189
|
+
cursor: pointer;
|
21190
|
+
}
|
21191
|
+
.v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
|
21192
|
+
opacity: 1;
|
21193
|
+
}
|
21194
|
+
.v-date-picker-controls .v-btn:last-child {
|
21195
|
+
margin-inline-start: 4px;
|
21196
|
+
}
|
21197
|
+
.v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
|
21198
|
+
transform: rotate(180deg);
|
21199
|
+
}
|
21200
|
+
|
21201
|
+
.v-date-picker-controls__date {
|
21202
|
+
margin-inline-end: 4px;
|
21203
|
+
}
|
21204
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__date {
|
21205
|
+
margin: auto;
|
21206
|
+
text-align: center;
|
21207
|
+
}
|
21208
|
+
|
21209
|
+
.v-date-picker-controls__month {
|
21137
21210
|
display: flex;
|
21138
|
-
justify-content: flex-end;
|
21139
|
-
min-width: 116px;
|
21140
|
-
padding: 0 16px;
|
21141
21211
|
}
|
21142
|
-
.v-
|
21212
|
+
.v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
|
21213
|
+
flex-direction: row-reverse;
|
21214
|
+
}
|
21215
|
+
|
21216
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__month {
|
21217
|
+
flex: 1 0 auto;
|
21218
|
+
}
|
21219
|
+
|
21220
|
+
.v-date-picker__title {
|
21221
|
+
display: inline-block;
|
21222
|
+
}.v-date-picker-header {
|
21223
|
+
align-items: flex-end;
|
21224
|
+
height: 70px;
|
21225
|
+
display: grid;
|
21226
|
+
grid-template-areas: "prepend content append";
|
21227
|
+
grid-template-columns: min-content minmax(0, 1fr) min-content;
|
21228
|
+
overflow: hidden;
|
21229
|
+
padding-inline: 24px 12px;
|
21230
|
+
padding-bottom: 12px;
|
21231
|
+
}
|
21232
|
+
|
21233
|
+
.v-date-picker-header__append {
|
21234
|
+
grid-area: append;
|
21235
|
+
}
|
21236
|
+
|
21237
|
+
.v-date-picker-header__prepend {
|
21238
|
+
grid-area: prepend;
|
21239
|
+
padding-inline-start: 8px;
|
21240
|
+
}
|
21241
|
+
|
21242
|
+
.v-date-picker-header__content {
|
21143
21243
|
align-items: center;
|
21144
|
-
display: flex;
|
21145
|
-
|
21244
|
+
display: inline-flex;
|
21245
|
+
font-size: 32px;
|
21246
|
+
line-height: 40px;
|
21247
|
+
grid-area: content;
|
21248
|
+
justify-content: space-between;
|
21146
21249
|
}
|
21147
|
-
.v-
|
21148
|
-
|
21250
|
+
.v-date-picker-header--clickable .v-date-picker-header__content {
|
21251
|
+
cursor: pointer;
|
21252
|
+
}
|
21253
|
+
.v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
|
21254
|
+
opacity: 0.7;
|
21255
|
+
}
|
21256
|
+
|
21257
|
+
.date-picker-header-transition-enter-active,
|
21258
|
+
.date-picker-header-reverse-transition-enter-active {
|
21259
|
+
transition-duration: 0.3s;
|
21260
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21261
|
+
}
|
21262
|
+
.date-picker-header-transition-leave-active,
|
21263
|
+
.date-picker-header-reverse-transition-leave-active {
|
21264
|
+
transition-duration: 0.3s;
|
21265
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21266
|
+
}
|
21267
|
+
|
21268
|
+
.date-picker-header-transition-enter-from {
|
21269
|
+
transform: translate(0, 100%);
|
21270
|
+
}
|
21271
|
+
.date-picker-header-transition-leave-to {
|
21272
|
+
opacity: 0;
|
21273
|
+
transform: translate(0, -100%);
|
21274
|
+
}
|
21275
|
+
|
21276
|
+
.date-picker-header-reverse-transition-enter-from {
|
21277
|
+
transform: translate(0, -100%);
|
21278
|
+
}
|
21279
|
+
.date-picker-header-reverse-transition-leave-to {
|
21280
|
+
opacity: 0;
|
21281
|
+
transform: translate(0, 100%);
|
21149
21282
|
}.v-date-picker {
|
21150
21283
|
overflow: hidden;
|
21151
21284
|
width: 328px;
|
@@ -21226,138 +21359,125 @@ html.overflow-y-hidden {
|
|
21226
21359
|
|
21227
21360
|
.v-date-picker-month__day--hide-adjacent {
|
21228
21361
|
opacity: 0;
|
21229
|
-
}.v-
|
21230
|
-
|
21231
|
-
|
21232
|
-
|
21233
|
-
|
21234
|
-
|
21235
|
-
|
21236
|
-
padding-inline: 24px 12px;
|
21237
|
-
padding-bottom: 12px;
|
21238
|
-
}
|
21239
|
-
|
21240
|
-
.v-date-picker-header__append {
|
21241
|
-
grid-area: append;
|
21362
|
+
}.v-divider {
|
21363
|
+
display: block;
|
21364
|
+
flex: 1 1 100%;
|
21365
|
+
height: 0px;
|
21366
|
+
max-height: 0px;
|
21367
|
+
opacity: var(--v-border-opacity);
|
21368
|
+
transition: inherit;
|
21242
21369
|
}
|
21243
|
-
|
21244
|
-
|
21245
|
-
|
21246
|
-
padding-inline-start: 8px;
|
21370
|
+
.v-divider {
|
21371
|
+
border-style: solid;
|
21372
|
+
border-width: thin 0 0 0;
|
21247
21373
|
}
|
21248
|
-
|
21249
|
-
|
21250
|
-
|
21374
|
+
.v-divider--vertical {
|
21375
|
+
align-self: stretch;
|
21376
|
+
border-width: 0 thin 0 0;
|
21251
21377
|
display: inline-flex;
|
21252
|
-
|
21253
|
-
|
21254
|
-
|
21255
|
-
|
21256
|
-
|
21257
|
-
|
21258
|
-
cursor: pointer;
|
21259
|
-
}
|
21260
|
-
.v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
|
21261
|
-
opacity: 0.7;
|
21262
|
-
}
|
21263
|
-
|
21264
|
-
.date-picker-header-transition-enter-active,
|
21265
|
-
.date-picker-header-reverse-transition-enter-active {
|
21266
|
-
transition-duration: 0.3s;
|
21267
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21268
|
-
}
|
21269
|
-
.date-picker-header-transition-leave-active,
|
21270
|
-
.date-picker-header-reverse-transition-leave-active {
|
21271
|
-
transition-duration: 0.3s;
|
21272
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21378
|
+
height: auto;
|
21379
|
+
margin-left: -1px;
|
21380
|
+
max-height: 100%;
|
21381
|
+
max-width: 0px;
|
21382
|
+
vertical-align: text-bottom;
|
21383
|
+
width: 0px;
|
21273
21384
|
}
|
21274
|
-
|
21275
|
-
|
21276
|
-
|
21385
|
+
.v-divider--inset:not(.v-divider--vertical) {
|
21386
|
+
max-width: calc(100% - 72px);
|
21387
|
+
margin-inline-start: 72px;
|
21277
21388
|
}
|
21278
|
-
.
|
21279
|
-
|
21280
|
-
|
21389
|
+
.v-divider--inset.v-divider--vertical {
|
21390
|
+
margin-bottom: 8px;
|
21391
|
+
margin-top: 8px;
|
21392
|
+
max-height: calc(100% - 16px);
|
21281
21393
|
}
|
21282
21394
|
|
21283
|
-
.
|
21284
|
-
|
21395
|
+
.v-divider__content {
|
21396
|
+
padding: 0 16px;
|
21397
|
+
text-wrap: nowrap;
|
21285
21398
|
}
|
21286
|
-
.
|
21287
|
-
|
21288
|
-
transform: translate(0, 100%);
|
21289
|
-
}.v-date-picker-years {
|
21290
|
-
height: 288px;
|
21291
|
-
overflow-y: scroll;
|
21399
|
+
.v-divider__wrapper--vertical .v-divider__content {
|
21400
|
+
padding: 4px 0;
|
21292
21401
|
}
|
21293
21402
|
|
21294
|
-
.v-
|
21295
|
-
display: grid;
|
21296
|
-
flex: 1 1;
|
21297
|
-
justify-content: space-around;
|
21298
|
-
grid-template-columns: repeat(3, 1fr);
|
21299
|
-
gap: 8px 24px;
|
21300
|
-
padding-inline: 32px;
|
21301
|
-
}
|
21302
|
-
.v-date-picker-years__content .v-btn {
|
21303
|
-
padding-inline: 8px;
|
21304
|
-
}.v-date-picker-controls {
|
21403
|
+
.v-divider__wrapper {
|
21305
21404
|
display: flex;
|
21306
21405
|
align-items: center;
|
21307
|
-
justify-content:
|
21308
|
-
font-size: 0.875rem;
|
21309
|
-
height: var(--v-date-picker-controls-height, 56px);
|
21310
|
-
padding-top: 4px;
|
21311
|
-
padding-bottom: 4px;
|
21312
|
-
padding-inline-start: 6px;
|
21313
|
-
padding-inline-end: 12px;
|
21406
|
+
justify-content: center;
|
21314
21407
|
}
|
21315
|
-
.v-
|
21316
|
-
|
21317
|
-
|
21318
|
-
line-height: initial;
|
21319
|
-
letter-spacing: initial;
|
21408
|
+
.v-divider__wrapper--vertical {
|
21409
|
+
flex-direction: column;
|
21410
|
+
height: 100%;
|
21320
21411
|
}
|
21321
|
-
.v-
|
21322
|
-
|
21412
|
+
.v-divider__wrapper--vertical .v-divider {
|
21413
|
+
margin: 0 auto;
|
21414
|
+
}.v-empty-state {
|
21415
|
+
align-items: center;
|
21416
|
+
display: flex;
|
21417
|
+
flex-direction: column;
|
21418
|
+
justify-content: center;
|
21419
|
+
min-height: 100%;
|
21420
|
+
padding: 16px;
|
21323
21421
|
}
|
21324
|
-
.v-
|
21325
|
-
|
21422
|
+
.v-empty-state--start {
|
21423
|
+
align-items: flex-start;
|
21326
21424
|
}
|
21327
|
-
.v-
|
21328
|
-
|
21425
|
+
.v-empty-state--center {
|
21426
|
+
align-items: center;
|
21329
21427
|
}
|
21330
|
-
.v-
|
21331
|
-
|
21428
|
+
.v-empty-state--end {
|
21429
|
+
align-items: flex-end;
|
21332
21430
|
}
|
21333
|
-
|
21334
|
-
|
21431
|
+
|
21432
|
+
.v-empty-state__media {
|
21433
|
+
text-align: center;
|
21434
|
+
width: 100%;
|
21335
21435
|
}
|
21336
|
-
.v-
|
21337
|
-
|
21436
|
+
.v-empty-state__media .v-icon {
|
21437
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
21338
21438
|
}
|
21339
21439
|
|
21340
|
-
.v-
|
21341
|
-
|
21440
|
+
.v-empty-state__headline {
|
21441
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
21442
|
+
font-size: 3.75rem;
|
21443
|
+
font-weight: 300;
|
21444
|
+
line-height: 1;
|
21445
|
+
text-align: center;
|
21446
|
+
margin-bottom: 8px;
|
21342
21447
|
}
|
21343
|
-
.v-
|
21344
|
-
|
21448
|
+
.v-empty-state--mobile .v-empty-state__headline {
|
21449
|
+
font-size: 2.125rem;
|
21450
|
+
}
|
21451
|
+
|
21452
|
+
.v-empty-state__title {
|
21453
|
+
font-size: 1.25rem;
|
21454
|
+
font-weight: 500;
|
21455
|
+
line-height: 1.6;
|
21456
|
+
margin-bottom: 4px;
|
21345
21457
|
text-align: center;
|
21346
21458
|
}
|
21347
21459
|
|
21348
|
-
.v-
|
21349
|
-
|
21460
|
+
.v-empty-state__text {
|
21461
|
+
font-size: 0.875rem;
|
21462
|
+
font-weight: 400;
|
21463
|
+
line-height: 1.425;
|
21464
|
+
padding: 0 16px;
|
21465
|
+
text-align: center;
|
21350
21466
|
}
|
21351
|
-
|
21352
|
-
|
21467
|
+
|
21468
|
+
.v-empty-state__content {
|
21469
|
+
padding: 24px 0;
|
21353
21470
|
}
|
21354
21471
|
|
21355
|
-
.v-
|
21356
|
-
|
21472
|
+
.v-empty-state__actions {
|
21473
|
+
display: flex;
|
21474
|
+
gap: 8px;
|
21475
|
+
padding: 16px;
|
21357
21476
|
}
|
21358
21477
|
|
21359
|
-
.v-
|
21360
|
-
|
21478
|
+
.v-empty-state__action-btn.v-btn {
|
21479
|
+
background-color: initial;
|
21480
|
+
color: initial;
|
21361
21481
|
}.v-dialog {
|
21362
21482
|
align-items: center;
|
21363
21483
|
justify-content: center;
|
@@ -21457,125 +21577,126 @@ html.overflow-y-hidden {
|
|
21457
21577
|
-webkit-backface-visibility: hidden;
|
21458
21578
|
backface-visibility: hidden;
|
21459
21579
|
overflow-y: auto;
|
21460
|
-
}.v-
|
21461
|
-
|
21462
|
-
|
21463
|
-
|
21464
|
-
max-height: 0px;
|
21465
|
-
opacity: var(--v-border-opacity);
|
21466
|
-
transition: inherit;
|
21580
|
+
}.v-file-input--hide.v-input .v-field,
|
21581
|
+
.v-file-input--hide.v-input .v-input__control,
|
21582
|
+
.v-file-input--hide.v-input .v-input__details {
|
21583
|
+
display: none;
|
21467
21584
|
}
|
21468
|
-
.v-
|
21469
|
-
|
21470
|
-
|
21585
|
+
.v-file-input--hide.v-input .v-input__prepend {
|
21586
|
+
grid-area: control;
|
21587
|
+
margin: 0 auto;
|
21471
21588
|
}
|
21472
|
-
.v-
|
21473
|
-
|
21474
|
-
|
21475
|
-
|
21476
|
-
|
21477
|
-
margin-left: -1px;
|
21478
|
-
max-height: 100%;
|
21479
|
-
max-width: 0px;
|
21480
|
-
vertical-align: text-bottom;
|
21481
|
-
width: 0px;
|
21589
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
21590
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
21591
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
21592
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
21593
|
+
top: 0px;
|
21482
21594
|
}
|
21483
|
-
.v-
|
21484
|
-
|
21485
|
-
|
21595
|
+
.v-file-input input[type=file] {
|
21596
|
+
height: 100%;
|
21597
|
+
left: 0;
|
21598
|
+
opacity: 0;
|
21599
|
+
position: absolute;
|
21600
|
+
top: 0;
|
21601
|
+
width: 100%;
|
21602
|
+
z-index: 0;
|
21486
21603
|
}
|
21487
|
-
.v-
|
21488
|
-
|
21489
|
-
margin-top: 8px;
|
21490
|
-
max-height: calc(100% - 16px);
|
21604
|
+
.v-file-input--dragging input[type=file] {
|
21605
|
+
z-index: 1;
|
21491
21606
|
}
|
21492
|
-
|
21493
|
-
|
21494
|
-
padding: 0 16px;
|
21495
|
-
text-wrap: nowrap;
|
21607
|
+
.v-file-input .v-input__details {
|
21608
|
+
padding-inline: 16px;
|
21496
21609
|
}
|
21497
|
-
.v-
|
21498
|
-
padding:
|
21610
|
+
.v-input--plain-underlined.v-file-input .v-input__details {
|
21611
|
+
padding-inline: 0;
|
21612
|
+
}.v-date-picker-years {
|
21613
|
+
height: 288px;
|
21614
|
+
overflow-y: scroll;
|
21499
21615
|
}
|
21500
21616
|
|
21501
|
-
.v-
|
21502
|
-
display:
|
21617
|
+
.v-date-picker-years__content {
|
21618
|
+
display: grid;
|
21619
|
+
flex: 1 1;
|
21620
|
+
justify-content: space-around;
|
21621
|
+
grid-template-columns: repeat(3, 1fr);
|
21622
|
+
gap: 8px 24px;
|
21623
|
+
padding-inline: 32px;
|
21624
|
+
}
|
21625
|
+
.v-date-picker-years__content .v-btn {
|
21626
|
+
padding-inline: 8px;
|
21627
|
+
}.v-fab {
|
21503
21628
|
align-items: center;
|
21504
|
-
|
21629
|
+
display: inline-flex;
|
21630
|
+
flex: 1 1 auto;
|
21631
|
+
pointer-events: none;
|
21632
|
+
position: relative;
|
21633
|
+
transition-duration: 0.2s;
|
21634
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21635
|
+
vertical-align: middle;
|
21505
21636
|
}
|
21506
|
-
.v-
|
21507
|
-
|
21508
|
-
height: 100%;
|
21637
|
+
.v-fab .v-btn {
|
21638
|
+
pointer-events: auto;
|
21509
21639
|
}
|
21510
|
-
.v-
|
21511
|
-
|
21512
|
-
}
|
21513
|
-
|
21640
|
+
.v-fab .v-btn--variant-elevated {
|
21641
|
+
box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
21642
|
+
}
|
21643
|
+
.v-fab--app, .v-fab--absolute {
|
21514
21644
|
display: flex;
|
21515
|
-
flex-direction: column;
|
21516
|
-
justify-content: center;
|
21517
|
-
min-height: 100%;
|
21518
|
-
padding: 16px;
|
21519
21645
|
}
|
21520
|
-
.v-
|
21521
|
-
|
21646
|
+
.v-fab--absolute {
|
21647
|
+
position: absolute;
|
21648
|
+
inset: 0;
|
21522
21649
|
}
|
21523
|
-
.v-
|
21650
|
+
.v-fab--start, .v-fab--left {
|
21651
|
+
justify-content: flex-start;
|
21652
|
+
}
|
21653
|
+
.v-fab--center {
|
21524
21654
|
align-items: center;
|
21655
|
+
justify-content: center;
|
21525
21656
|
}
|
21526
|
-
.v-
|
21527
|
-
|
21657
|
+
.v-fab--end, .v-fab--right {
|
21658
|
+
justify-content: flex-end;
|
21528
21659
|
}
|
21529
|
-
|
21530
|
-
|
21531
|
-
text-align: center;
|
21532
|
-
width: 100%;
|
21660
|
+
.v-fab--bottom {
|
21661
|
+
align-items: flex-end;
|
21533
21662
|
}
|
21534
|
-
.v-
|
21535
|
-
|
21663
|
+
.v-fab--top {
|
21664
|
+
align-items: flex-start;
|
21665
|
+
}
|
21666
|
+
.v-fab--extended .v-btn {
|
21667
|
+
border-radius: 9999px !important;
|
21536
21668
|
}
|
21537
21669
|
|
21538
|
-
.v-
|
21539
|
-
|
21540
|
-
|
21541
|
-
|
21542
|
-
line-height: 1;
|
21543
|
-
text-align: center;
|
21544
|
-
margin-bottom: 8px;
|
21670
|
+
.v-fab__container {
|
21671
|
+
align-self: center;
|
21672
|
+
display: inline-flex;
|
21673
|
+
vertical-align: middle;
|
21545
21674
|
}
|
21546
|
-
.v-
|
21547
|
-
|
21675
|
+
.v-fab--app .v-fab__container {
|
21676
|
+
margin: 12px;
|
21677
|
+
position: fixed;
|
21548
21678
|
}
|
21549
|
-
|
21550
|
-
|
21551
|
-
|
21552
|
-
font-weight: 500;
|
21553
|
-
line-height: 1.6;
|
21554
|
-
margin-bottom: 4px;
|
21555
|
-
text-align: center;
|
21679
|
+
.v-fab--absolute .v-fab__container {
|
21680
|
+
position: absolute;
|
21681
|
+
z-index: 4;
|
21556
21682
|
}
|
21557
|
-
|
21558
|
-
|
21559
|
-
font-size: 0.875rem;
|
21560
|
-
font-weight: 400;
|
21561
|
-
line-height: 1.425;
|
21562
|
-
padding: 0 16px;
|
21563
|
-
text-align: center;
|
21683
|
+
.v-fab--offset.v-fab--top .v-fab__container {
|
21684
|
+
transform: translateY(-50%);
|
21564
21685
|
}
|
21565
|
-
|
21566
|
-
|
21567
|
-
padding: 24px 0;
|
21686
|
+
.v-fab--offset.v-fab--bottom .v-fab__container {
|
21687
|
+
transform: translateY(50%);
|
21568
21688
|
}
|
21569
|
-
|
21570
|
-
|
21571
|
-
display: flex;
|
21572
|
-
gap: 8px;
|
21573
|
-
padding: 16px;
|
21689
|
+
.v-fab--top .v-fab__container {
|
21690
|
+
top: 0;
|
21574
21691
|
}
|
21575
|
-
|
21576
|
-
|
21577
|
-
|
21578
|
-
|
21692
|
+
.v-fab--bottom .v-fab__container {
|
21693
|
+
bottom: 0;
|
21694
|
+
}
|
21695
|
+
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
21696
|
+
left: 0;
|
21697
|
+
}
|
21698
|
+
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
21699
|
+
right: 0;
|
21579
21700
|
}.v-expansion-panel {
|
21580
21701
|
background-color: rgb(var(--v-theme-surface));
|
21581
21702
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
@@ -22385,112 +22506,7 @@ textarea.v-field__input::placeholder {
|
|
22385
22506
|
opacity: 0;
|
22386
22507
|
}
|
22387
22508
|
|
22388
|
-
/* endregion */.v-
|
22389
|
-
align-items: center;
|
22390
|
-
display: inline-flex;
|
22391
|
-
flex: 1 1 auto;
|
22392
|
-
pointer-events: none;
|
22393
|
-
position: relative;
|
22394
|
-
transition-duration: 0.2s;
|
22395
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
22396
|
-
vertical-align: middle;
|
22397
|
-
}
|
22398
|
-
.v-fab .v-btn {
|
22399
|
-
pointer-events: auto;
|
22400
|
-
}
|
22401
|
-
.v-fab .v-btn--variant-elevated {
|
22402
|
-
box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
22403
|
-
}
|
22404
|
-
.v-fab--app, .v-fab--absolute {
|
22405
|
-
display: flex;
|
22406
|
-
}
|
22407
|
-
.v-fab--absolute {
|
22408
|
-
position: absolute;
|
22409
|
-
inset: 0;
|
22410
|
-
}
|
22411
|
-
.v-fab--start, .v-fab--left {
|
22412
|
-
justify-content: flex-start;
|
22413
|
-
}
|
22414
|
-
.v-fab--center {
|
22415
|
-
align-items: center;
|
22416
|
-
justify-content: center;
|
22417
|
-
}
|
22418
|
-
.v-fab--end, .v-fab--right {
|
22419
|
-
justify-content: flex-end;
|
22420
|
-
}
|
22421
|
-
.v-fab--bottom {
|
22422
|
-
align-items: flex-end;
|
22423
|
-
}
|
22424
|
-
.v-fab--top {
|
22425
|
-
align-items: flex-start;
|
22426
|
-
}
|
22427
|
-
.v-fab--extended .v-btn {
|
22428
|
-
border-radius: 9999px !important;
|
22429
|
-
}
|
22430
|
-
|
22431
|
-
.v-fab__container {
|
22432
|
-
align-self: center;
|
22433
|
-
display: inline-flex;
|
22434
|
-
vertical-align: middle;
|
22435
|
-
}
|
22436
|
-
.v-fab--app .v-fab__container {
|
22437
|
-
margin: 12px;
|
22438
|
-
position: fixed;
|
22439
|
-
}
|
22440
|
-
.v-fab--absolute .v-fab__container {
|
22441
|
-
position: absolute;
|
22442
|
-
z-index: 4;
|
22443
|
-
}
|
22444
|
-
.v-fab--offset.v-fab--top .v-fab__container {
|
22445
|
-
transform: translateY(-50%);
|
22446
|
-
}
|
22447
|
-
.v-fab--offset.v-fab--bottom .v-fab__container {
|
22448
|
-
transform: translateY(50%);
|
22449
|
-
}
|
22450
|
-
.v-fab--top .v-fab__container {
|
22451
|
-
top: 0;
|
22452
|
-
}
|
22453
|
-
.v-fab--bottom .v-fab__container {
|
22454
|
-
bottom: 0;
|
22455
|
-
}
|
22456
|
-
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
22457
|
-
left: 0;
|
22458
|
-
}
|
22459
|
-
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
22460
|
-
right: 0;
|
22461
|
-
}.v-file-input--hide.v-input .v-field,
|
22462
|
-
.v-file-input--hide.v-input .v-input__control,
|
22463
|
-
.v-file-input--hide.v-input .v-input__details {
|
22464
|
-
display: none;
|
22465
|
-
}
|
22466
|
-
.v-file-input--hide.v-input .v-input__prepend {
|
22467
|
-
grid-area: control;
|
22468
|
-
margin: 0 auto;
|
22469
|
-
}
|
22470
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
22471
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
22472
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
22473
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
22474
|
-
top: 0px;
|
22475
|
-
}
|
22476
|
-
.v-file-input input[type=file] {
|
22477
|
-
height: 100%;
|
22478
|
-
left: 0;
|
22479
|
-
opacity: 0;
|
22480
|
-
position: absolute;
|
22481
|
-
top: 0;
|
22482
|
-
width: 100%;
|
22483
|
-
z-index: 0;
|
22484
|
-
}
|
22485
|
-
.v-file-input--dragging input[type=file] {
|
22486
|
-
z-index: 1;
|
22487
|
-
}
|
22488
|
-
.v-file-input .v-input__details {
|
22489
|
-
padding-inline: 16px;
|
22490
|
-
}
|
22491
|
-
.v-input--plain-underlined.v-file-input .v-input__details {
|
22492
|
-
padding-inline: 0;
|
22493
|
-
}.v-footer {
|
22509
|
+
/* endregion */.v-footer {
|
22494
22510
|
align-items: center;
|
22495
22511
|
display: flex;
|
22496
22512
|
flex: 1 1 auto;
|
@@ -22580,6 +22596,57 @@ textarea.v-field__input::placeholder {
|
|
22580
22596
|
|
22581
22597
|
.v-icon--end {
|
22582
22598
|
margin-inline-start: 8px;
|
22599
|
+
}.v-img {
|
22600
|
+
--v-theme-overlay-multiplier: 3;
|
22601
|
+
z-index: 0;
|
22602
|
+
}
|
22603
|
+
.v-img.v-img--absolute {
|
22604
|
+
height: 100%;
|
22605
|
+
left: 0;
|
22606
|
+
overflow: hidden;
|
22607
|
+
position: absolute;
|
22608
|
+
top: 0;
|
22609
|
+
width: 100%;
|
22610
|
+
z-index: -1;
|
22611
|
+
}
|
22612
|
+
.v-img--booting .v-responsive__sizer {
|
22613
|
+
transition: none;
|
22614
|
+
}
|
22615
|
+
.v-img--rounded {
|
22616
|
+
border-radius: 4px;
|
22617
|
+
}
|
22618
|
+
|
22619
|
+
.v-img__img,
|
22620
|
+
.v-img__picture,
|
22621
|
+
.v-img__gradient,
|
22622
|
+
.v-img__placeholder,
|
22623
|
+
.v-img__error {
|
22624
|
+
z-index: -1;
|
22625
|
+
}
|
22626
|
+
.v-img__img,
|
22627
|
+
.v-img__picture,
|
22628
|
+
.v-img__gradient,
|
22629
|
+
.v-img__placeholder,
|
22630
|
+
.v-img__error {
|
22631
|
+
position: absolute;
|
22632
|
+
top: 0;
|
22633
|
+
left: 0;
|
22634
|
+
width: 100%;
|
22635
|
+
height: 100%;
|
22636
|
+
}
|
22637
|
+
|
22638
|
+
.v-img__img--preload {
|
22639
|
+
filter: blur(4px);
|
22640
|
+
}
|
22641
|
+
.v-img__img--contain {
|
22642
|
+
object-fit: contain;
|
22643
|
+
}
|
22644
|
+
.v-img__img--cover {
|
22645
|
+
object-fit: cover;
|
22646
|
+
}
|
22647
|
+
|
22648
|
+
.v-img__gradient {
|
22649
|
+
background-repeat: no-repeat;
|
22583
22650
|
}.v-infinite-scroll--horizontal {
|
22584
22651
|
display: flex;
|
22585
22652
|
flex-direction: row;
|
@@ -22617,11 +22684,6 @@ textarea.v-field__input::placeholder {
|
|
22617
22684
|
display: flex;
|
22618
22685
|
justify-content: center;
|
22619
22686
|
padding: 8px;
|
22620
|
-
}.v-item-group {
|
22621
|
-
flex: 0 1 auto;
|
22622
|
-
max-width: 100%;
|
22623
|
-
position: relative;
|
22624
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22625
22687
|
}.v-input {
|
22626
22688
|
display: grid;
|
22627
22689
|
flex: 1 1 auto;
|
@@ -22752,23 +22814,75 @@ textarea.v-field__input::placeholder {
|
|
22752
22814
|
-webkit-appearance: none;
|
22753
22815
|
margin: 0;
|
22754
22816
|
}
|
22755
|
-
.v-input--hide-spin-buttons input[type=number] {
|
22756
|
-
-moz-appearance: textfield;
|
22817
|
+
.v-input--hide-spin-buttons input[type=number] {
|
22818
|
+
-moz-appearance: textfield;
|
22819
|
+
}
|
22820
|
+
.v-input--plain-underlined .v-input__prepend,
|
22821
|
+
.v-input--plain-underlined .v-input__append {
|
22822
|
+
align-items: flex-start;
|
22823
|
+
}
|
22824
|
+
.v-input--density-default.v-input--plain-underlined .v-input__prepend, .v-input--density-default.v-input--plain-underlined .v-input__append {
|
22825
|
+
padding-top: calc(var(--v-input-padding-top) + 4px);
|
22826
|
+
}
|
22827
|
+
|
22828
|
+
.v-input--density-comfortable.v-input--plain-underlined .v-input__prepend, .v-input--density-comfortable.v-input--plain-underlined .v-input__append {
|
22829
|
+
padding-top: calc(var(--v-input-padding-top) + 2px);
|
22830
|
+
}
|
22831
|
+
|
22832
|
+
.v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
|
22833
|
+
padding-top: calc(var(--v-input-padding-top) + 0px);
|
22834
|
+
}.v-item-group {
|
22835
|
+
flex: 0 1 auto;
|
22836
|
+
max-width: 100%;
|
22837
|
+
position: relative;
|
22838
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22839
|
+
}.v-layout-item {
|
22840
|
+
position: absolute;
|
22841
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22842
|
+
}
|
22843
|
+
|
22844
|
+
.v-layout-item--absolute {
|
22845
|
+
position: absolute;
|
22846
|
+
}.v-layout {
|
22847
|
+
--v-scrollbar-offset: 0px;
|
22848
|
+
display: flex;
|
22849
|
+
flex: 1 1 auto;
|
22850
|
+
}
|
22851
|
+
.v-layout--full-height {
|
22852
|
+
--v-scrollbar-offset: inherit;
|
22853
|
+
height: 100%;
|
22854
|
+
}.v-main {
|
22855
|
+
flex: 1 0 auto;
|
22856
|
+
max-width: 100%;
|
22857
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22858
|
+
padding-left: var(--v-layout-left);
|
22859
|
+
padding-right: var(--v-layout-right);
|
22860
|
+
padding-top: var(--v-layout-top);
|
22861
|
+
padding-bottom: var(--v-layout-bottom);
|
22757
22862
|
}
|
22758
|
-
.v-
|
22759
|
-
|
22760
|
-
|
22863
|
+
.v-main__scroller {
|
22864
|
+
max-width: 100%;
|
22865
|
+
position: relative;
|
22761
22866
|
}
|
22762
|
-
.v-
|
22763
|
-
|
22867
|
+
.v-main--scrollable {
|
22868
|
+
display: flex;
|
22764
22869
|
}
|
22765
|
-
|
22766
|
-
|
22767
|
-
|
22870
|
+
.v-main--scrollable {
|
22871
|
+
position: absolute;
|
22872
|
+
top: 0;
|
22873
|
+
left: 0;
|
22874
|
+
width: 100%;
|
22875
|
+
height: 100%;
|
22768
22876
|
}
|
22769
|
-
|
22770
|
-
|
22771
|
-
|
22877
|
+
.v-main--scrollable > .v-main__scroller {
|
22878
|
+
flex: 1 1 auto;
|
22879
|
+
overflow-y: auto;
|
22880
|
+
--v-layout-left: 0px;
|
22881
|
+
--v-layout-right: 0px;
|
22882
|
+
--v-layout-top: 0px;
|
22883
|
+
--v-layout-bottom: 0px;
|
22884
|
+
}.v-locale-provider {
|
22885
|
+
display: contents;
|
22772
22886
|
}.v-label {
|
22773
22887
|
align-items: center;
|
22774
22888
|
color: inherit;
|
@@ -22784,21 +22898,25 @@ textarea.v-field__input::placeholder {
|
|
22784
22898
|
|
22785
22899
|
.v-label--clickable {
|
22786
22900
|
cursor: pointer;
|
22787
|
-
}.v-
|
22788
|
-
position: absolute;
|
22789
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22790
|
-
}
|
22791
|
-
|
22792
|
-
.v-layout-item--absolute {
|
22793
|
-
position: absolute;
|
22794
|
-
}.v-layout {
|
22795
|
-
--v-scrollbar-offset: 0px;
|
22901
|
+
}.v-menu > .v-overlay__content {
|
22796
22902
|
display: flex;
|
22797
|
-
flex:
|
22903
|
+
flex-direction: column;
|
22798
22904
|
}
|
22799
|
-
.v-
|
22800
|
-
|
22905
|
+
.v-menu > .v-overlay__content {
|
22906
|
+
border-radius: 4px;
|
22907
|
+
}
|
22908
|
+
.v-menu > .v-overlay__content > .v-card,
|
22909
|
+
.v-menu > .v-overlay__content > .v-sheet,
|
22910
|
+
.v-menu > .v-overlay__content > .v-list {
|
22911
|
+
background: rgb(var(--v-theme-surface));
|
22912
|
+
border-radius: inherit;
|
22913
|
+
overflow: auto;
|
22801
22914
|
height: 100%;
|
22915
|
+
}
|
22916
|
+
.v-menu > .v-overlay__content > .v-card,
|
22917
|
+
.v-menu > .v-overlay__content > .v-sheet,
|
22918
|
+
.v-menu > .v-overlay__content > .v-list {
|
22919
|
+
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));
|
22802
22920
|
}.v-list {
|
22803
22921
|
overflow: auto;
|
22804
22922
|
padding: 8px 0;
|
@@ -22908,38 +23026,22 @@ textarea.v-field__input::placeholder {
|
|
22908
23026
|
right: 0;
|
22909
23027
|
top: 0;
|
22910
23028
|
transition: opacity 0.2s ease-in-out;
|
22911
|
-
}.v-
|
22912
|
-
|
22913
|
-
|
22914
|
-
|
22915
|
-
|
22916
|
-
|
22917
|
-
padding-left: var(--v-layout-left);
|
22918
|
-
padding-right: var(--v-layout-right);
|
22919
|
-
padding-top: var(--v-layout-top);
|
22920
|
-
padding-bottom: var(--v-layout-bottom);
|
22921
|
-
}
|
22922
|
-
.v-main__scroller {
|
22923
|
-
max-width: 100%;
|
23029
|
+
}.v-messages {
|
23030
|
+
flex: 1 1 auto;
|
23031
|
+
font-size: 12px;
|
23032
|
+
min-height: 14px;
|
23033
|
+
min-width: 1px;
|
23034
|
+
opacity: var(--v-medium-emphasis-opacity);
|
22924
23035
|
position: relative;
|
22925
23036
|
}
|
22926
|
-
.v-
|
22927
|
-
|
22928
|
-
|
22929
|
-
|
22930
|
-
|
22931
|
-
|
22932
|
-
|
22933
|
-
|
22934
|
-
height: 100%;
|
22935
|
-
}
|
22936
|
-
.v-main--scrollable > .v-main__scroller {
|
22937
|
-
flex: 1 1 auto;
|
22938
|
-
overflow-y: auto;
|
22939
|
-
--v-layout-left: 0px;
|
22940
|
-
--v-layout-right: 0px;
|
22941
|
-
--v-layout-top: 0px;
|
22942
|
-
--v-layout-bottom: 0px;
|
23037
|
+
.v-messages__message {
|
23038
|
+
line-height: 12px;
|
23039
|
+
word-break: break-word;
|
23040
|
+
overflow-wrap: break-word;
|
23041
|
+
word-wrap: break-word;
|
23042
|
+
-webkit-hyphens: auto;
|
23043
|
+
hyphens: auto;
|
23044
|
+
transition-duration: 150ms;
|
22943
23045
|
}.v-list-item {
|
22944
23046
|
align-items: center;
|
22945
23047
|
display: grid;
|
@@ -23407,41 +23509,6 @@ textarea.v-field__input::placeholder {
|
|
23407
23509
|
}
|
23408
23510
|
.v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
|
23409
23511
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
23410
|
-
}.v-menu > .v-overlay__content {
|
23411
|
-
display: flex;
|
23412
|
-
flex-direction: column;
|
23413
|
-
}
|
23414
|
-
.v-menu > .v-overlay__content {
|
23415
|
-
border-radius: 4px;
|
23416
|
-
}
|
23417
|
-
.v-menu > .v-overlay__content > .v-card,
|
23418
|
-
.v-menu > .v-overlay__content > .v-sheet,
|
23419
|
-
.v-menu > .v-overlay__content > .v-list {
|
23420
|
-
background: rgb(var(--v-theme-surface));
|
23421
|
-
border-radius: inherit;
|
23422
|
-
overflow: auto;
|
23423
|
-
height: 100%;
|
23424
|
-
}
|
23425
|
-
.v-menu > .v-overlay__content > .v-card,
|
23426
|
-
.v-menu > .v-overlay__content > .v-sheet,
|
23427
|
-
.v-menu > .v-overlay__content > .v-list {
|
23428
|
-
box-shadow: 0px 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
23429
|
-
}.v-messages {
|
23430
|
-
flex: 1 1 auto;
|
23431
|
-
font-size: 12px;
|
23432
|
-
min-height: 14px;
|
23433
|
-
min-width: 1px;
|
23434
|
-
opacity: var(--v-medium-emphasis-opacity);
|
23435
|
-
position: relative;
|
23436
|
-
}
|
23437
|
-
.v-messages__message {
|
23438
|
-
line-height: 12px;
|
23439
|
-
word-break: break-word;
|
23440
|
-
overflow-wrap: break-word;
|
23441
|
-
word-wrap: break-word;
|
23442
|
-
-webkit-hyphens: auto;
|
23443
|
-
hyphens: auto;
|
23444
|
-
transition-duration: 150ms;
|
23445
23512
|
}.v-navigation-drawer {
|
23446
23513
|
-webkit-overflow-scrolling: touch;
|
23447
23514
|
background: rgb(var(--v-theme-surface));
|
@@ -23725,122 +23792,20 @@ html.v-overlay-scroll-blocked {
|
|
23725
23792
|
|
23726
23793
|
.v-overlay--scroll-blocked {
|
23727
23794
|
padding-inline-end: var(--v-scrollbar-offset);
|
23728
|
-
}.v-pagination__list {
|
23729
|
-
display: inline-flex;
|
23730
|
-
list-style-type: none;
|
23731
|
-
justify-content: center;
|
23732
|
-
width: 100%;
|
23733
|
-
}
|
23734
|
-
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
23735
|
-
margin: 0.3rem;
|
23736
23795
|
}.v-parallax {
|
23737
23796
|
position: relative;
|
23738
23797
|
overflow: hidden;
|
23739
23798
|
}
|
23740
23799
|
.v-parallax--active > .v-img__img {
|
23741
23800
|
will-change: transform;
|
23742
|
-
}.v-
|
23743
|
-
align-items: center;
|
23801
|
+
}.v-pagination__list {
|
23744
23802
|
display: inline-flex;
|
23803
|
+
list-style-type: none;
|
23745
23804
|
justify-content: center;
|
23746
|
-
|
23747
|
-
vertical-align: middle;
|
23748
|
-
}
|
23749
|
-
.v-progress-circular > svg {
|
23750
|
-
width: 100%;
|
23751
|
-
height: 100%;
|
23752
|
-
margin: auto;
|
23753
|
-
position: absolute;
|
23754
|
-
top: 0;
|
23755
|
-
bottom: 0;
|
23756
|
-
left: 0;
|
23757
|
-
right: 0;
|
23758
|
-
z-index: 0;
|
23759
|
-
}
|
23760
|
-
|
23761
|
-
.v-progress-circular__content {
|
23762
|
-
align-items: center;
|
23763
|
-
display: flex;
|
23764
|
-
justify-content: center;
|
23765
|
-
}
|
23766
|
-
|
23767
|
-
.v-progress-circular__underlay {
|
23768
|
-
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
23769
|
-
stroke: currentColor;
|
23770
|
-
z-index: 1;
|
23771
|
-
}
|
23772
|
-
|
23773
|
-
.v-progress-circular__overlay {
|
23774
|
-
stroke: currentColor;
|
23775
|
-
transition: all 0.2s ease-in-out, stroke-width 0s;
|
23776
|
-
z-index: 2;
|
23777
|
-
}
|
23778
|
-
|
23779
|
-
.v-progress-circular--size-x-small {
|
23780
|
-
height: 16px;
|
23781
|
-
width: 16px;
|
23782
|
-
}
|
23783
|
-
.v-progress-circular--size-small {
|
23784
|
-
height: 24px;
|
23785
|
-
width: 24px;
|
23786
|
-
}
|
23787
|
-
.v-progress-circular--size-default {
|
23788
|
-
height: 32px;
|
23789
|
-
width: 32px;
|
23790
|
-
}
|
23791
|
-
.v-progress-circular--size-large {
|
23792
|
-
height: 48px;
|
23793
|
-
width: 48px;
|
23794
|
-
}
|
23795
|
-
.v-progress-circular--size-x-large {
|
23796
|
-
height: 64px;
|
23797
|
-
width: 64px;
|
23798
|
-
}
|
23799
|
-
|
23800
|
-
.v-progress-circular--indeterminate > svg {
|
23801
|
-
animation: progress-circular-rotate 1.4s linear infinite;
|
23802
|
-
transform-origin: center center;
|
23803
|
-
transition: all 0.2s ease-in-out;
|
23804
|
-
}
|
23805
|
-
.v-progress-circular--indeterminate .v-progress-circular__overlay {
|
23806
|
-
animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
|
23807
|
-
stroke-dasharray: 25, 200;
|
23808
|
-
stroke-dashoffset: 0;
|
23809
|
-
stroke-linecap: round;
|
23810
|
-
transform-origin: center center;
|
23811
|
-
transform: rotate(-90deg);
|
23812
|
-
}
|
23813
|
-
|
23814
|
-
.v-progress-circular--disable-shrink > svg {
|
23815
|
-
animation-duration: 0.7s;
|
23816
|
-
}
|
23817
|
-
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
23818
|
-
animation: none;
|
23819
|
-
}
|
23820
|
-
|
23821
|
-
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
|
23822
|
-
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
|
23823
|
-
animation-play-state: paused !important;
|
23824
|
-
}
|
23825
|
-
|
23826
|
-
@keyframes progress-circular-dash {
|
23827
|
-
0% {
|
23828
|
-
stroke-dasharray: 1, 200;
|
23829
|
-
stroke-dashoffset: 0px;
|
23830
|
-
}
|
23831
|
-
50% {
|
23832
|
-
stroke-dasharray: 100, 200;
|
23833
|
-
stroke-dashoffset: -15px;
|
23834
|
-
}
|
23835
|
-
100% {
|
23836
|
-
stroke-dasharray: 100, 200;
|
23837
|
-
stroke-dashoffset: -124px;
|
23838
|
-
}
|
23805
|
+
width: 100%;
|
23839
23806
|
}
|
23840
|
-
|
23841
|
-
|
23842
|
-
transform: rotate(270deg);
|
23843
|
-
}
|
23807
|
+
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
23808
|
+
margin: 0.3rem;
|
23844
23809
|
}.v-progress-linear {
|
23845
23810
|
background: transparent;
|
23846
23811
|
overflow: hidden;
|
@@ -24069,75 +24034,120 @@ html.v-overlay-scroll-blocked {
|
|
24069
24034
|
0% {
|
24070
24035
|
background-position-x: var(--v-progress-linear-height);
|
24071
24036
|
}
|
24072
|
-
}.v-
|
24073
|
-
|
24074
|
-
|
24075
|
-
|
24076
|
-
|
24077
|
-
|
24078
|
-
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
24079
|
-
padding-inline-start: 6px;
|
24080
|
-
margin-top: 8px;
|
24037
|
+
}.v-progress-circular {
|
24038
|
+
align-items: center;
|
24039
|
+
display: inline-flex;
|
24040
|
+
justify-content: center;
|
24041
|
+
position: relative;
|
24042
|
+
vertical-align: middle;
|
24081
24043
|
}
|
24082
|
-
.v-
|
24083
|
-
padding-inline: 16px;
|
24084
|
-
}.v-slider .v-slider__container input {
|
24085
|
-
cursor: default;
|
24086
|
-
padding: 0;
|
24044
|
+
.v-progress-circular > svg {
|
24087
24045
|
width: 100%;
|
24088
|
-
|
24089
|
-
|
24090
|
-
|
24091
|
-
|
24092
|
-
|
24046
|
+
height: 100%;
|
24047
|
+
margin: auto;
|
24048
|
+
position: absolute;
|
24049
|
+
top: 0;
|
24050
|
+
bottom: 0;
|
24051
|
+
left: 0;
|
24052
|
+
right: 0;
|
24053
|
+
z-index: 0;
|
24093
24054
|
}
|
24094
24055
|
|
24095
|
-
.v-
|
24096
|
-
|
24097
|
-
min-height: inherit;
|
24098
|
-
width: 100%;
|
24099
|
-
height: 100%;
|
24056
|
+
.v-progress-circular__content {
|
24057
|
+
align-items: center;
|
24100
24058
|
display: flex;
|
24101
24059
|
justify-content: center;
|
24102
|
-
align-items: center;
|
24103
|
-
cursor: pointer;
|
24104
24060
|
}
|
24105
|
-
|
24106
|
-
|
24061
|
+
|
24062
|
+
.v-progress-circular__underlay {
|
24063
|
+
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
24064
|
+
stroke: currentColor;
|
24065
|
+
z-index: 1;
|
24107
24066
|
}
|
24108
|
-
|
24109
|
-
|
24067
|
+
|
24068
|
+
.v-progress-circular__overlay {
|
24069
|
+
stroke: currentColor;
|
24070
|
+
transition: all 0.2s ease-in-out, stroke-width 0s;
|
24071
|
+
z-index: 2;
|
24110
24072
|
}
|
24111
24073
|
|
24112
|
-
.v-
|
24113
|
-
|
24114
|
-
|
24074
|
+
.v-progress-circular--size-x-small {
|
24075
|
+
height: 16px;
|
24076
|
+
width: 16px;
|
24115
24077
|
}
|
24116
|
-
.v-
|
24117
|
-
|
24118
|
-
|
24119
|
-
|
24078
|
+
.v-progress-circular--size-small {
|
24079
|
+
height: 24px;
|
24080
|
+
width: 24px;
|
24081
|
+
}
|
24082
|
+
.v-progress-circular--size-default {
|
24083
|
+
height: 32px;
|
24084
|
+
width: 32px;
|
24085
|
+
}
|
24086
|
+
.v-progress-circular--size-large {
|
24087
|
+
height: 48px;
|
24088
|
+
width: 48px;
|
24089
|
+
}
|
24090
|
+
.v-progress-circular--size-x-large {
|
24091
|
+
height: 64px;
|
24092
|
+
width: 64px;
|
24120
24093
|
}
|
24121
24094
|
|
24122
|
-
.v-
|
24123
|
-
|
24124
|
-
|
24125
|
-
|
24095
|
+
.v-progress-circular--indeterminate > svg {
|
24096
|
+
animation: progress-circular-rotate 1.4s linear infinite;
|
24097
|
+
transform-origin: center center;
|
24098
|
+
transition: all 0.2s ease-in-out;
|
24126
24099
|
}
|
24127
|
-
.v-
|
24128
|
-
|
24100
|
+
.v-progress-circular--indeterminate .v-progress-circular__overlay {
|
24101
|
+
animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
|
24102
|
+
stroke-dasharray: 25, 200;
|
24103
|
+
stroke-dashoffset: 0;
|
24104
|
+
stroke-linecap: round;
|
24105
|
+
transform-origin: center center;
|
24106
|
+
transform: rotate(-90deg);
|
24129
24107
|
}
|
24130
24108
|
|
24131
|
-
.v-
|
24132
|
-
|
24109
|
+
.v-progress-circular--disable-shrink > svg {
|
24110
|
+
animation-duration: 0.7s;
|
24111
|
+
}
|
24112
|
+
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
24113
|
+
animation: none;
|
24133
24114
|
}
|
24134
24115
|
|
24135
|
-
.v-
|
24136
|
-
|
24116
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
|
24117
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
|
24118
|
+
animation-play-state: paused !important;
|
24137
24119
|
}
|
24138
24120
|
|
24139
|
-
|
24140
|
-
|
24121
|
+
@keyframes progress-circular-dash {
|
24122
|
+
0% {
|
24123
|
+
stroke-dasharray: 1, 200;
|
24124
|
+
stroke-dashoffset: 0px;
|
24125
|
+
}
|
24126
|
+
50% {
|
24127
|
+
stroke-dasharray: 100, 200;
|
24128
|
+
stroke-dashoffset: -15px;
|
24129
|
+
}
|
24130
|
+
100% {
|
24131
|
+
stroke-dasharray: 100, 200;
|
24132
|
+
stroke-dashoffset: -124px;
|
24133
|
+
}
|
24134
|
+
}
|
24135
|
+
@keyframes progress-circular-rotate {
|
24136
|
+
100% {
|
24137
|
+
transform: rotate(270deg);
|
24138
|
+
}
|
24139
|
+
}.v-radio-group > .v-input__control {
|
24140
|
+
flex-direction: column;
|
24141
|
+
}
|
24142
|
+
.v-radio-group > .v-input__control > .v-label {
|
24143
|
+
margin-inline-start: 16px;
|
24144
|
+
}
|
24145
|
+
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
24146
|
+
padding-inline-start: 6px;
|
24147
|
+
margin-top: 8px;
|
24148
|
+
}
|
24149
|
+
.v-radio-group .v-input__details {
|
24150
|
+
padding-inline: 16px;
|
24141
24151
|
}.v-rating {
|
24142
24152
|
max-width: 100%;
|
24143
24153
|
display: inline-flex;
|
@@ -24217,6 +24227,63 @@ html.v-overlay-scroll-blocked {
|
|
24217
24227
|
flex: 1 0 0px;
|
24218
24228
|
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
24219
24229
|
pointer-events: none;
|
24230
|
+
}.v-slider .v-slider__container input {
|
24231
|
+
cursor: default;
|
24232
|
+
padding: 0;
|
24233
|
+
width: 100%;
|
24234
|
+
display: none;
|
24235
|
+
}
|
24236
|
+
.v-slider > .v-input__append,
|
24237
|
+
.v-slider > .v-input__prepend {
|
24238
|
+
padding: 0;
|
24239
|
+
}
|
24240
|
+
|
24241
|
+
.v-slider__container {
|
24242
|
+
position: relative;
|
24243
|
+
min-height: inherit;
|
24244
|
+
width: 100%;
|
24245
|
+
height: 100%;
|
24246
|
+
display: flex;
|
24247
|
+
justify-content: center;
|
24248
|
+
align-items: center;
|
24249
|
+
cursor: pointer;
|
24250
|
+
}
|
24251
|
+
.v-input--disabled .v-slider__container {
|
24252
|
+
opacity: var(--v-disabled-opacity);
|
24253
|
+
}
|
24254
|
+
.v-input--error:not(.v-input--disabled) .v-slider__container {
|
24255
|
+
color: rgb(var(--v-theme-error));
|
24256
|
+
}
|
24257
|
+
|
24258
|
+
.v-slider.v-input--horizontal {
|
24259
|
+
align-items: center;
|
24260
|
+
margin-inline: 8px 8px;
|
24261
|
+
}
|
24262
|
+
.v-slider.v-input--horizontal > .v-input__control {
|
24263
|
+
min-height: 32px;
|
24264
|
+
display: flex;
|
24265
|
+
align-items: center;
|
24266
|
+
}
|
24267
|
+
|
24268
|
+
.v-slider.v-input--vertical {
|
24269
|
+
justify-content: center;
|
24270
|
+
margin-top: 12px;
|
24271
|
+
margin-bottom: 12px;
|
24272
|
+
}
|
24273
|
+
.v-slider.v-input--vertical > .v-input__control {
|
24274
|
+
min-height: 300px;
|
24275
|
+
}
|
24276
|
+
|
24277
|
+
.v-slider.v-input--disabled {
|
24278
|
+
pointer-events: none;
|
24279
|
+
}
|
24280
|
+
|
24281
|
+
.v-slider--has-labels > .v-input__control {
|
24282
|
+
margin-bottom: 4px;
|
24283
|
+
}
|
24284
|
+
|
24285
|
+
.v-slider__label {
|
24286
|
+
margin-inline-end: 12px;
|
24220
24287
|
}.v-select .v-field .v-text-field__prefix,
|
24221
24288
|
.v-select .v-field .v-text-field__suffix,
|
24222
24289
|
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
@@ -24766,18 +24833,73 @@ html.v-overlay-scroll-blocked {
|
|
24766
24833
|
transition-duration: 0.15s;
|
24767
24834
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
24768
24835
|
}
|
24769
|
-
.v-snackbar-transition-enter-active {
|
24770
|
-
transition-property: opacity, transform;
|
24836
|
+
.v-snackbar-transition-enter-active {
|
24837
|
+
transition-property: opacity, transform;
|
24838
|
+
}
|
24839
|
+
.v-snackbar-transition-enter-from {
|
24840
|
+
opacity: 0;
|
24841
|
+
transform: scale(0.8);
|
24842
|
+
}
|
24843
|
+
.v-snackbar-transition-leave-active {
|
24844
|
+
transition-property: opacity;
|
24845
|
+
}
|
24846
|
+
.v-snackbar-transition-leave-to {
|
24847
|
+
opacity: 0;
|
24848
|
+
}.v-slide-group {
|
24849
|
+
display: flex;
|
24850
|
+
overflow: hidden;
|
24851
|
+
}
|
24852
|
+
|
24853
|
+
.v-slide-group__next,
|
24854
|
+
.v-slide-group__prev {
|
24855
|
+
align-items: center;
|
24856
|
+
display: flex;
|
24857
|
+
flex: 0 1 52px;
|
24858
|
+
justify-content: center;
|
24859
|
+
min-width: 52px;
|
24860
|
+
cursor: pointer;
|
24861
|
+
}
|
24862
|
+
.v-slide-group__next--disabled,
|
24863
|
+
.v-slide-group__prev--disabled {
|
24864
|
+
pointer-events: none;
|
24865
|
+
opacity: var(--v-disabled-opacity);
|
24866
|
+
}
|
24867
|
+
|
24868
|
+
.v-slide-group__content {
|
24869
|
+
display: flex;
|
24870
|
+
flex: 1 0 auto;
|
24871
|
+
position: relative;
|
24872
|
+
transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
|
24873
|
+
white-space: nowrap;
|
24874
|
+
}
|
24875
|
+
.v-slide-group__content > * {
|
24876
|
+
white-space: initial;
|
24877
|
+
}
|
24878
|
+
|
24879
|
+
.v-slide-group__container {
|
24880
|
+
contain: content;
|
24881
|
+
display: flex;
|
24882
|
+
flex: 1 1 auto;
|
24883
|
+
overflow-x: auto;
|
24884
|
+
overflow-y: hidden;
|
24885
|
+
scrollbar-width: none;
|
24886
|
+
scrollbar-color: rgba(0, 0, 0, 0);
|
24887
|
+
}
|
24888
|
+
.v-slide-group__container::-webkit-scrollbar {
|
24889
|
+
display: none;
|
24771
24890
|
}
|
24772
|
-
|
24773
|
-
|
24774
|
-
|
24891
|
+
|
24892
|
+
.v-slide-group--vertical {
|
24893
|
+
max-height: inherit;
|
24775
24894
|
}
|
24776
|
-
.v-
|
24777
|
-
|
24895
|
+
.v-slide-group--vertical,
|
24896
|
+
.v-slide-group--vertical .v-slide-group__container,
|
24897
|
+
.v-slide-group--vertical .v-slide-group__content {
|
24898
|
+
flex-direction: column;
|
24778
24899
|
}
|
24779
|
-
.v-
|
24780
|
-
|
24900
|
+
.v-slide-group--vertical .v-slide-group__container {
|
24901
|
+
overflow-x: hidden;
|
24902
|
+
overflow-y: auto;
|
24781
24903
|
}.v-stepper.v-sheet {
|
24782
24904
|
overflow: hidden;
|
24783
24905
|
}
|
@@ -25219,35 +25341,6 @@ html.v-overlay-scroll-blocked {
|
|
25219
25341
|
}
|
25220
25342
|
.v-system-bar:not(.v-system-bar--absolute) {
|
25221
25343
|
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
25222
|
-
}.v-tab.v-tab.v-btn {
|
25223
|
-
height: var(--v-tabs-height);
|
25224
|
-
border-radius: 0;
|
25225
|
-
min-width: 90px;
|
25226
|
-
}
|
25227
|
-
.v-slide-group--horizontal .v-tab {
|
25228
|
-
max-width: 360px;
|
25229
|
-
}
|
25230
|
-
.v-slide-group--vertical .v-tab {
|
25231
|
-
justify-content: start;
|
25232
|
-
}
|
25233
|
-
|
25234
|
-
.v-tab__slider {
|
25235
|
-
position: absolute;
|
25236
|
-
bottom: 0;
|
25237
|
-
left: 0;
|
25238
|
-
height: 2px;
|
25239
|
-
width: 100%;
|
25240
|
-
background: currentColor;
|
25241
|
-
pointer-events: none;
|
25242
|
-
opacity: 0;
|
25243
|
-
}
|
25244
|
-
.v-tab--selected .v-tab__slider {
|
25245
|
-
opacity: 1;
|
25246
|
-
}
|
25247
|
-
.v-slide-group--vertical .v-tab__slider {
|
25248
|
-
top: 0;
|
25249
|
-
height: 100%;
|
25250
|
-
width: 2px;
|
25251
25344
|
}.v-tabs {
|
25252
25345
|
display: flex;
|
25253
25346
|
height: var(--v-tabs-height);
|
@@ -25314,6 +25407,35 @@ html.v-overlay-scroll-blocked {
|
|
25314
25407
|
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
25315
25408
|
margin-inline-end: 52px;
|
25316
25409
|
}
|
25410
|
+
}.v-tab.v-tab.v-btn {
|
25411
|
+
height: var(--v-tabs-height);
|
25412
|
+
border-radius: 0;
|
25413
|
+
min-width: 90px;
|
25414
|
+
}
|
25415
|
+
.v-slide-group--horizontal .v-tab {
|
25416
|
+
max-width: 360px;
|
25417
|
+
}
|
25418
|
+
.v-slide-group--vertical .v-tab {
|
25419
|
+
justify-content: start;
|
25420
|
+
}
|
25421
|
+
|
25422
|
+
.v-tab__slider {
|
25423
|
+
position: absolute;
|
25424
|
+
bottom: 0;
|
25425
|
+
left: 0;
|
25426
|
+
height: 2px;
|
25427
|
+
width: 100%;
|
25428
|
+
background: currentColor;
|
25429
|
+
pointer-events: none;
|
25430
|
+
opacity: 0;
|
25431
|
+
}
|
25432
|
+
.v-tab--selected .v-tab__slider {
|
25433
|
+
opacity: 1;
|
25434
|
+
}
|
25435
|
+
.v-slide-group--vertical .v-tab__slider {
|
25436
|
+
top: 0;
|
25437
|
+
height: 100%;
|
25438
|
+
width: 2px;
|
25317
25439
|
}.v-table {
|
25318
25440
|
font-size: 0.875rem;
|
25319
25441
|
transition-duration: 0.28s;
|
@@ -25576,10 +25698,7 @@ html.v-overlay-scroll-blocked {
|
|
25576
25698
|
padding-inline-start: var(--v-field-padding-start);
|
25577
25699
|
}
|
25578
25700
|
|
25579
|
-
/* endregion */.v-
|
25580
|
-
background: rgb(var(--v-theme-background));
|
25581
|
-
color: rgb(var(--v-theme-on-background));
|
25582
|
-
}.v-timeline .v-timeline-divider__dot {
|
25701
|
+
/* endregion */.v-timeline .v-timeline-divider__dot {
|
25583
25702
|
background: rgb(var(--v-theme-surface-light));
|
25584
25703
|
}
|
25585
25704
|
.v-timeline .v-timeline-divider__inner-dot {
|
@@ -26006,30 +26125,6 @@ html.v-overlay-scroll-blocked {
|
|
26006
26125
|
|
26007
26126
|
.v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
|
26008
26127
|
padding-inline-end: 0;
|
26009
|
-
}.v-tooltip > .v-overlay__content {
|
26010
|
-
background: rgb(var(--v-theme-surface-variant));
|
26011
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
26012
|
-
border-radius: 4px;
|
26013
|
-
font-size: 0.875rem;
|
26014
|
-
line-height: 1.6;
|
26015
|
-
display: inline-block;
|
26016
|
-
padding: 5px 16px;
|
26017
|
-
text-transform: initial;
|
26018
|
-
width: auto;
|
26019
|
-
opacity: 1;
|
26020
|
-
transition-property: opacity, transform;
|
26021
|
-
overflow-wrap: break-word;
|
26022
|
-
}
|
26023
|
-
.v-tooltip > .v-overlay__content[class*=enter-active] {
|
26024
|
-
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
26025
|
-
transition-duration: 150ms;
|
26026
|
-
}
|
26027
|
-
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
26028
|
-
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
26029
|
-
transition-duration: 75ms;
|
26030
|
-
}
|
26031
|
-
.v-tooltip:not(.v-tooltip--interactive) > .v-overlay__content {
|
26032
|
-
pointer-events: none;
|
26033
26128
|
}.v-toolbar {
|
26034
26129
|
align-items: flex-start;
|
26035
26130
|
display: flex;
|
@@ -26174,6 +26269,33 @@ html.v-overlay-scroll-blocked {
|
|
26174
26269
|
}
|
26175
26270
|
.v-toolbar-items > .v-btn {
|
26176
26271
|
border-radius: 0;
|
26272
|
+
}.v-theme-provider {
|
26273
|
+
background: rgb(var(--v-theme-background));
|
26274
|
+
color: rgb(var(--v-theme-on-background));
|
26275
|
+
}.v-tooltip > .v-overlay__content {
|
26276
|
+
background: rgb(var(--v-theme-surface-variant));
|
26277
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
26278
|
+
border-radius: 4px;
|
26279
|
+
font-size: 0.875rem;
|
26280
|
+
line-height: 1.6;
|
26281
|
+
display: inline-block;
|
26282
|
+
padding: 5px 16px;
|
26283
|
+
text-transform: initial;
|
26284
|
+
width: auto;
|
26285
|
+
opacity: 1;
|
26286
|
+
transition-property: opacity, transform;
|
26287
|
+
overflow-wrap: break-word;
|
26288
|
+
}
|
26289
|
+
.v-tooltip > .v-overlay__content[class*=enter-active] {
|
26290
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
26291
|
+
transition-duration: 150ms;
|
26292
|
+
}
|
26293
|
+
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
26294
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
26295
|
+
transition-duration: 75ms;
|
26296
|
+
}
|
26297
|
+
.v-tooltip:not(.v-tooltip--interactive) > .v-overlay__content {
|
26298
|
+
pointer-events: none;
|
26177
26299
|
}.v-virtual-scroll {
|
26178
26300
|
display: block;
|
26179
26301
|
flex: 1 1 auto;
|
@@ -26253,128 +26375,6 @@ html.v-overlay-scroll-blocked {
|
|
26253
26375
|
}
|
26254
26376
|
.v-window-y-reverse-transition-leave-to {
|
26255
26377
|
transform: translateY(100%);
|
26256
|
-
}.v-application {
|
26257
|
-
display: flex;
|
26258
|
-
background: rgb(var(--v-theme-background));
|
26259
|
-
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
26260
|
-
}
|
26261
|
-
|
26262
|
-
.v-application__wrap {
|
26263
|
-
-webkit-backface-visibility: hidden;
|
26264
|
-
backface-visibility: hidden;
|
26265
|
-
display: flex;
|
26266
|
-
flex-direction: column;
|
26267
|
-
flex: 1 1 auto;
|
26268
|
-
max-width: 100%;
|
26269
|
-
min-height: 100vh;
|
26270
|
-
min-height: 100dvh;
|
26271
|
-
position: relative;
|
26272
|
-
}.v-slide-group {
|
26273
|
-
display: flex;
|
26274
|
-
overflow: hidden;
|
26275
|
-
}
|
26276
|
-
|
26277
|
-
.v-slide-group__next,
|
26278
|
-
.v-slide-group__prev {
|
26279
|
-
align-items: center;
|
26280
|
-
display: flex;
|
26281
|
-
flex: 0 1 52px;
|
26282
|
-
justify-content: center;
|
26283
|
-
min-width: 52px;
|
26284
|
-
cursor: pointer;
|
26285
|
-
}
|
26286
|
-
.v-slide-group__next--disabled,
|
26287
|
-
.v-slide-group__prev--disabled {
|
26288
|
-
pointer-events: none;
|
26289
|
-
opacity: var(--v-disabled-opacity);
|
26290
|
-
}
|
26291
|
-
|
26292
|
-
.v-slide-group__content {
|
26293
|
-
display: flex;
|
26294
|
-
flex: 1 0 auto;
|
26295
|
-
position: relative;
|
26296
|
-
transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
|
26297
|
-
white-space: nowrap;
|
26298
|
-
}
|
26299
|
-
.v-slide-group__content > * {
|
26300
|
-
white-space: initial;
|
26301
|
-
}
|
26302
|
-
|
26303
|
-
.v-slide-group__container {
|
26304
|
-
contain: content;
|
26305
|
-
display: flex;
|
26306
|
-
flex: 1 1 auto;
|
26307
|
-
overflow-x: auto;
|
26308
|
-
overflow-y: hidden;
|
26309
|
-
scrollbar-width: none;
|
26310
|
-
scrollbar-color: rgba(0, 0, 0, 0);
|
26311
|
-
}
|
26312
|
-
.v-slide-group__container::-webkit-scrollbar {
|
26313
|
-
display: none;
|
26314
|
-
}
|
26315
|
-
|
26316
|
-
.v-slide-group--vertical {
|
26317
|
-
max-height: inherit;
|
26318
|
-
}
|
26319
|
-
.v-slide-group--vertical,
|
26320
|
-
.v-slide-group--vertical .v-slide-group__container,
|
26321
|
-
.v-slide-group--vertical .v-slide-group__content {
|
26322
|
-
flex-direction: column;
|
26323
|
-
}
|
26324
|
-
.v-slide-group--vertical .v-slide-group__container {
|
26325
|
-
overflow-x: hidden;
|
26326
|
-
overflow-y: auto;
|
26327
|
-
}.v-img {
|
26328
|
-
--v-theme-overlay-multiplier: 3;
|
26329
|
-
z-index: 0;
|
26330
|
-
}
|
26331
|
-
.v-img.v-img--absolute {
|
26332
|
-
height: 100%;
|
26333
|
-
left: 0;
|
26334
|
-
overflow: hidden;
|
26335
|
-
position: absolute;
|
26336
|
-
top: 0;
|
26337
|
-
width: 100%;
|
26338
|
-
z-index: -1;
|
26339
|
-
}
|
26340
|
-
.v-img--booting .v-responsive__sizer {
|
26341
|
-
transition: none;
|
26342
|
-
}
|
26343
|
-
.v-img--rounded {
|
26344
|
-
border-radius: 4px;
|
26345
|
-
}
|
26346
|
-
|
26347
|
-
.v-img__img,
|
26348
|
-
.v-img__picture,
|
26349
|
-
.v-img__gradient,
|
26350
|
-
.v-img__placeholder,
|
26351
|
-
.v-img__error {
|
26352
|
-
z-index: -1;
|
26353
|
-
}
|
26354
|
-
.v-img__img,
|
26355
|
-
.v-img__picture,
|
26356
|
-
.v-img__gradient,
|
26357
|
-
.v-img__placeholder,
|
26358
|
-
.v-img__error {
|
26359
|
-
position: absolute;
|
26360
|
-
top: 0;
|
26361
|
-
left: 0;
|
26362
|
-
width: 100%;
|
26363
|
-
height: 100%;
|
26364
|
-
}
|
26365
|
-
|
26366
|
-
.v-img__img--preload {
|
26367
|
-
filter: blur(4px);
|
26368
|
-
}
|
26369
|
-
.v-img__img--contain {
|
26370
|
-
object-fit: contain;
|
26371
|
-
}
|
26372
|
-
.v-img__img--cover {
|
26373
|
-
object-fit: cover;
|
26374
|
-
}
|
26375
|
-
|
26376
|
-
.v-img__gradient {
|
26377
|
-
background-repeat: no-repeat;
|
26378
26378
|
}.v-color-picker-canvas {
|
26379
26379
|
display: flex;
|
26380
26380
|
position: relative;
|