vuetify 3.4.5 → 3.4.7
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/dist/json/attributes.json +3787 -3787
- package/dist/json/importMap.json +106 -106
- package/dist/json/web-types.json +7206 -7206
- package/dist/vuetify-labs.css +2331 -2331
- package/dist/vuetify-labs.esm.js +108 -97
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +108 -97
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +811 -811
- package/dist/vuetify.d.ts +30 -30
- package/dist/vuetify.esm.js +108 -97
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +108 -97
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +720 -718
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.css +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +6 -8
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
- package/lib/components/VChip/VChip.mjs +1 -1
- package/lib/components/VChip/VChip.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.css +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +1 -1
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.sass +1 -1
- package/lib/components/VSelect/VSelect.mjs +12 -2
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/composables/theme.mjs +85 -82
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +30 -30
- package/package.json +4 -4
package/dist/vuetify.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.4.
|
|
2
|
+
* Vuetify v3.4.7
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -16997,6 +16997,18 @@ html.overflow-y-hidden {
|
|
|
16997
16997
|
min-height: 100vh;
|
|
16998
16998
|
min-height: 100dvh;
|
|
16999
16999
|
position: relative;
|
|
17000
|
+
}.v-app-bar {
|
|
17001
|
+
display: flex;
|
|
17002
|
+
}
|
|
17003
|
+
.v-app-bar.v-toolbar {
|
|
17004
|
+
background: rgb(var(--v-theme-surface));
|
|
17005
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
17006
|
+
}
|
|
17007
|
+
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
|
|
17008
|
+
box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
17009
|
+
}
|
|
17010
|
+
.v-app-bar:not(.v-toolbar--absolute) {
|
|
17011
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
|
17000
17012
|
}.v-alert {
|
|
17001
17013
|
display: grid;
|
|
17002
17014
|
flex: 1 1;
|
|
@@ -17207,18 +17219,87 @@ html.overflow-y-hidden {
|
|
|
17207
17219
|
text-transform: none;
|
|
17208
17220
|
word-break: normal;
|
|
17209
17221
|
word-wrap: break-word;
|
|
17210
|
-
}.v-
|
|
17211
|
-
|
|
17222
|
+
}.v-autocomplete .v-field .v-text-field__prefix,
|
|
17223
|
+
.v-autocomplete .v-field .v-text-field__suffix,
|
|
17224
|
+
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
|
17225
|
+
cursor: text;
|
|
17212
17226
|
}
|
|
17213
|
-
.v-
|
|
17214
|
-
|
|
17215
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
17227
|
+
.v-autocomplete .v-field .v-field__input > input {
|
|
17228
|
+
flex: 1 1;
|
|
17216
17229
|
}
|
|
17217
|
-
.v-
|
|
17230
|
+
.v-autocomplete .v-field input {
|
|
17231
|
+
min-width: 64px;
|
|
17232
|
+
}
|
|
17233
|
+
.v-autocomplete .v-field:not(.v-field--focused) input {
|
|
17234
|
+
min-width: 0;
|
|
17235
|
+
}
|
|
17236
|
+
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
|
17237
|
+
margin-inline-end: 2px;
|
|
17238
|
+
}
|
|
17239
|
+
.v-autocomplete .v-autocomplete__selection-text {
|
|
17240
|
+
overflow: hidden;
|
|
17241
|
+
text-overflow: ellipsis;
|
|
17242
|
+
white-space: nowrap;
|
|
17243
|
+
}
|
|
17244
|
+
|
|
17245
|
+
.v-autocomplete__content {
|
|
17246
|
+
overflow: hidden;
|
|
17218
17247
|
box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
17248
|
+
border-radius: 4px;
|
|
17219
17249
|
}
|
|
17220
|
-
.v-
|
|
17221
|
-
|
|
17250
|
+
.v-autocomplete__mask {
|
|
17251
|
+
background: rgb(var(--v-theme-on-surface-variant));
|
|
17252
|
+
}
|
|
17253
|
+
.v-autocomplete__selection {
|
|
17254
|
+
display: inline-flex;
|
|
17255
|
+
align-items: center;
|
|
17256
|
+
height: 1.5rem;
|
|
17257
|
+
letter-spacing: inherit;
|
|
17258
|
+
line-height: inherit;
|
|
17259
|
+
max-width: calc(100% - 2px);
|
|
17260
|
+
}
|
|
17261
|
+
.v-autocomplete__selection:first-child {
|
|
17262
|
+
margin-inline-start: 0;
|
|
17263
|
+
}
|
|
17264
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
17265
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
17266
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
17267
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
17268
|
+
top: 0px;
|
|
17269
|
+
}
|
|
17270
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
|
17271
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
17272
|
+
}
|
|
17273
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
|
17274
|
+
opacity: 1;
|
|
17275
|
+
}
|
|
17276
|
+
.v-autocomplete--selecting-index .v-field__input > input {
|
|
17277
|
+
caret-color: transparent;
|
|
17278
|
+
}
|
|
17279
|
+
.v-autocomplete--single.v-text-field .v-field--focused input {
|
|
17280
|
+
flex: 1 1;
|
|
17281
|
+
position: absolute;
|
|
17282
|
+
left: 0;
|
|
17283
|
+
right: 0;
|
|
17284
|
+
width: 100%;
|
|
17285
|
+
padding-inline: inherit;
|
|
17286
|
+
}
|
|
17287
|
+
.v-autocomplete--single .v-field--active input {
|
|
17288
|
+
transition: none;
|
|
17289
|
+
}
|
|
17290
|
+
.v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
|
|
17291
|
+
opacity: 0;
|
|
17292
|
+
}
|
|
17293
|
+
.v-autocomplete--single .v-field--focused .v-autocomplete__selection {
|
|
17294
|
+
opacity: 0;
|
|
17295
|
+
}
|
|
17296
|
+
.v-autocomplete__menu-icon {
|
|
17297
|
+
margin-inline-start: 4px;
|
|
17298
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
17299
|
+
}
|
|
17300
|
+
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
|
17301
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
17302
|
+
transform: rotate(180deg);
|
|
17222
17303
|
}.v-avatar {
|
|
17223
17304
|
flex: none;
|
|
17224
17305
|
align-items: center;
|
|
@@ -17306,87 +17387,6 @@ html.overflow-y-hidden {
|
|
|
17306
17387
|
.v-avatar .v-img {
|
|
17307
17388
|
height: 100%;
|
|
17308
17389
|
width: 100%;
|
|
17309
|
-
}.v-autocomplete .v-field .v-text-field__prefix,
|
|
17310
|
-
.v-autocomplete .v-field .v-text-field__suffix,
|
|
17311
|
-
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
|
17312
|
-
cursor: text;
|
|
17313
|
-
}
|
|
17314
|
-
.v-autocomplete .v-field .v-field__input > input {
|
|
17315
|
-
flex: 1 1;
|
|
17316
|
-
}
|
|
17317
|
-
.v-autocomplete .v-field input {
|
|
17318
|
-
min-width: 64px;
|
|
17319
|
-
}
|
|
17320
|
-
.v-autocomplete .v-field:not(.v-field--focused) input {
|
|
17321
|
-
min-width: 0;
|
|
17322
|
-
}
|
|
17323
|
-
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
|
17324
|
-
margin-inline-end: 2px;
|
|
17325
|
-
}
|
|
17326
|
-
.v-autocomplete .v-autocomplete__selection-text {
|
|
17327
|
-
overflow: hidden;
|
|
17328
|
-
text-overflow: ellipsis;
|
|
17329
|
-
white-space: nowrap;
|
|
17330
|
-
}
|
|
17331
|
-
|
|
17332
|
-
.v-autocomplete__content {
|
|
17333
|
-
overflow: hidden;
|
|
17334
|
-
box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
17335
|
-
border-radius: 4px;
|
|
17336
|
-
}
|
|
17337
|
-
.v-autocomplete__mask {
|
|
17338
|
-
background: rgb(var(--v-theme-on-surface-variant));
|
|
17339
|
-
}
|
|
17340
|
-
.v-autocomplete__selection {
|
|
17341
|
-
display: inline-flex;
|
|
17342
|
-
align-items: center;
|
|
17343
|
-
height: 1.5rem;
|
|
17344
|
-
letter-spacing: inherit;
|
|
17345
|
-
line-height: inherit;
|
|
17346
|
-
max-width: calc(100% - 2px);
|
|
17347
|
-
}
|
|
17348
|
-
.v-autocomplete__selection:first-child {
|
|
17349
|
-
margin-inline-start: 0;
|
|
17350
|
-
}
|
|
17351
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
17352
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
17353
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
17354
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
17355
|
-
top: 0px;
|
|
17356
|
-
}
|
|
17357
|
-
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
|
17358
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
17359
|
-
}
|
|
17360
|
-
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
|
17361
|
-
opacity: 1;
|
|
17362
|
-
}
|
|
17363
|
-
.v-autocomplete--selecting-index .v-field__input > input {
|
|
17364
|
-
caret-color: transparent;
|
|
17365
|
-
}
|
|
17366
|
-
.v-autocomplete--single.v-text-field input {
|
|
17367
|
-
flex: 1 1;
|
|
17368
|
-
position: absolute;
|
|
17369
|
-
left: 0;
|
|
17370
|
-
right: 0;
|
|
17371
|
-
width: 100%;
|
|
17372
|
-
padding-inline: inherit;
|
|
17373
|
-
}
|
|
17374
|
-
.v-autocomplete--single .v-field--active input {
|
|
17375
|
-
transition: none;
|
|
17376
|
-
}
|
|
17377
|
-
.v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
|
|
17378
|
-
opacity: 0;
|
|
17379
|
-
}
|
|
17380
|
-
.v-autocomplete--single .v-field--focused .v-autocomplete__selection {
|
|
17381
|
-
opacity: 0;
|
|
17382
|
-
}
|
|
17383
|
-
.v-autocomplete__menu-icon {
|
|
17384
|
-
margin-inline-start: 4px;
|
|
17385
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
17386
|
-
}
|
|
17387
|
-
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
|
17388
|
-
opacity: var(--v-high-emphasis-opacity);
|
|
17389
|
-
transform: rotate(180deg);
|
|
17390
17390
|
}.v-badge {
|
|
17391
17391
|
display: inline-block;
|
|
17392
17392
|
line-height: 1;
|
|
@@ -18231,69 +18231,6 @@ html.overflow-y-hidden {
|
|
|
18231
18231
|
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
|
18232
18232
|
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18233
18233
|
}
|
|
18234
|
-
}.v-carousel {
|
|
18235
|
-
overflow: hidden;
|
|
18236
|
-
position: relative;
|
|
18237
|
-
width: 100%;
|
|
18238
|
-
}
|
|
18239
|
-
.v-carousel__controls {
|
|
18240
|
-
align-items: center;
|
|
18241
|
-
bottom: 0;
|
|
18242
|
-
display: flex;
|
|
18243
|
-
height: 50px;
|
|
18244
|
-
justify-content: center;
|
|
18245
|
-
list-style-type: none;
|
|
18246
|
-
position: absolute;
|
|
18247
|
-
width: 100%;
|
|
18248
|
-
z-index: 1;
|
|
18249
|
-
background: rgba(var(--v-theme-surface-variant), 0.3);
|
|
18250
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
|
18251
|
-
}
|
|
18252
|
-
.v-carousel__controls > .v-item-group {
|
|
18253
|
-
flex: 0 1 auto;
|
|
18254
|
-
}
|
|
18255
|
-
.v-carousel__controls__item {
|
|
18256
|
-
margin: 0 8px;
|
|
18257
|
-
}
|
|
18258
|
-
.v-carousel__controls__item .v-icon {
|
|
18259
|
-
opacity: 0.5;
|
|
18260
|
-
}
|
|
18261
|
-
.v-carousel__controls__item--active .v-icon {
|
|
18262
|
-
opacity: 1;
|
|
18263
|
-
vertical-align: middle;
|
|
18264
|
-
}
|
|
18265
|
-
.v-carousel__controls__item:hover {
|
|
18266
|
-
background: none;
|
|
18267
|
-
}
|
|
18268
|
-
.v-carousel__controls__item:hover .v-icon {
|
|
18269
|
-
opacity: 0.8;
|
|
18270
|
-
}
|
|
18271
|
-
|
|
18272
|
-
.v-carousel__progress {
|
|
18273
|
-
margin: 0;
|
|
18274
|
-
position: absolute;
|
|
18275
|
-
bottom: 0;
|
|
18276
|
-
left: 0;
|
|
18277
|
-
right: 0;
|
|
18278
|
-
}
|
|
18279
|
-
|
|
18280
|
-
.v-carousel-item {
|
|
18281
|
-
display: block;
|
|
18282
|
-
height: inherit;
|
|
18283
|
-
text-decoration: none;
|
|
18284
|
-
}
|
|
18285
|
-
.v-carousel-item > .v-img {
|
|
18286
|
-
height: inherit;
|
|
18287
|
-
}
|
|
18288
|
-
|
|
18289
|
-
.v-carousel--hide-delimiter-background .v-carousel__controls {
|
|
18290
|
-
background: transparent;
|
|
18291
|
-
}
|
|
18292
|
-
|
|
18293
|
-
.v-carousel--vertical-delimiters .v-carousel__controls {
|
|
18294
|
-
flex-direction: column;
|
|
18295
|
-
height: 100% !important;
|
|
18296
|
-
width: 50px;
|
|
18297
18234
|
}.v-card {
|
|
18298
18235
|
display: block;
|
|
18299
18236
|
overflow: hidden;
|
|
@@ -18586,6 +18523,8 @@ html.overflow-y-hidden {
|
|
|
18586
18523
|
pointer-events: none;
|
|
18587
18524
|
opacity: 0;
|
|
18588
18525
|
transition: opacity 0.2s ease-in-out;
|
|
18526
|
+
}.v-checkbox .v-selection-control {
|
|
18527
|
+
min-height: var(--v-input-control-height);
|
|
18589
18528
|
}.v-chip {
|
|
18590
18529
|
align-items: center;
|
|
18591
18530
|
cursor: default;
|
|
@@ -18994,8 +18933,6 @@ html.overflow-y-hidden {
|
|
|
18994
18933
|
|
|
18995
18934
|
.v-chip--label {
|
|
18996
18935
|
border-radius: 4px;
|
|
18997
|
-
}.v-checkbox .v-selection-control {
|
|
18998
|
-
min-height: var(--v-input-control-height);
|
|
18999
18936
|
}.v-chip-group {
|
|
19000
18937
|
display: flex;
|
|
19001
18938
|
max-width: 100%;
|
|
@@ -19763,7 +19700,7 @@ html.overflow-y-hidden {
|
|
|
19763
19700
|
.v-combobox--selecting-index .v-field__input > input {
|
|
19764
19701
|
caret-color: transparent;
|
|
19765
19702
|
}
|
|
19766
|
-
.v-combobox--single.v-text-field input {
|
|
19703
|
+
.v-combobox--single.v-text-field .v-field--focused input {
|
|
19767
19704
|
flex: 1 1;
|
|
19768
19705
|
position: absolute;
|
|
19769
19706
|
left: 0;
|
|
@@ -19792,16 +19729,104 @@ html.overflow-y-hidden {
|
|
|
19792
19729
|
flex: 0 1 auto;
|
|
19793
19730
|
font-size: 12px;
|
|
19794
19731
|
transition-duration: 150ms;
|
|
19795
|
-
}.v-
|
|
19796
|
-
|
|
19797
|
-
|
|
19798
|
-
|
|
19799
|
-
.v-data-table__table {
|
|
19800
|
-
width: 100%;
|
|
19801
|
-
border-collapse: separate;
|
|
19802
|
-
border-spacing: 0;
|
|
19732
|
+
}.v-dialog {
|
|
19733
|
+
align-items: center;
|
|
19734
|
+
justify-content: center;
|
|
19735
|
+
margin: auto;
|
|
19803
19736
|
}
|
|
19804
|
-
|
|
19737
|
+
.v-dialog > .v-overlay__content {
|
|
19738
|
+
max-height: calc(100% - 48px);
|
|
19739
|
+
width: calc(100% - 48px);
|
|
19740
|
+
max-width: calc(100% - 48px);
|
|
19741
|
+
margin: 24px;
|
|
19742
|
+
}
|
|
19743
|
+
.v-dialog > .v-overlay__content,
|
|
19744
|
+
.v-dialog > .v-overlay__content > form {
|
|
19745
|
+
display: flex;
|
|
19746
|
+
flex-direction: column;
|
|
19747
|
+
min-height: 0;
|
|
19748
|
+
}
|
|
19749
|
+
.v-dialog > .v-overlay__content > .v-card,
|
|
19750
|
+
.v-dialog > .v-overlay__content > .v-sheet,
|
|
19751
|
+
.v-dialog > .v-overlay__content > form > .v-card,
|
|
19752
|
+
.v-dialog > .v-overlay__content > form > .v-sheet {
|
|
19753
|
+
--v-scrollbar-offset: 0px;
|
|
19754
|
+
border-radius: 4px;
|
|
19755
|
+
overflow-y: auto;
|
|
19756
|
+
box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
19757
|
+
}
|
|
19758
|
+
.v-dialog > .v-overlay__content > .v-card,
|
|
19759
|
+
.v-dialog > .v-overlay__content > form > .v-card {
|
|
19760
|
+
display: flex;
|
|
19761
|
+
flex-direction: column;
|
|
19762
|
+
}
|
|
19763
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-item,
|
|
19764
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
|
|
19765
|
+
padding: 14px 24px 0;
|
|
19766
|
+
}
|
|
19767
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text,
|
|
19768
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item + .v-card-text {
|
|
19769
|
+
padding-top: 10px;
|
|
19770
|
+
}
|
|
19771
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-text,
|
|
19772
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-text {
|
|
19773
|
+
font-size: inherit;
|
|
19774
|
+
letter-spacing: 0.03125em;
|
|
19775
|
+
line-height: inherit;
|
|
19776
|
+
padding: 16px 24px 10px;
|
|
19777
|
+
}
|
|
19778
|
+
|
|
19779
|
+
.v-dialog--fullscreen {
|
|
19780
|
+
--v-scrollbar-offset: 0px;
|
|
19781
|
+
}
|
|
19782
|
+
.v-dialog--fullscreen > .v-overlay__content {
|
|
19783
|
+
border-radius: 0;
|
|
19784
|
+
margin: 0;
|
|
19785
|
+
padding: 0;
|
|
19786
|
+
width: 100%;
|
|
19787
|
+
height: 100%;
|
|
19788
|
+
max-width: 100%;
|
|
19789
|
+
max-height: 100%;
|
|
19790
|
+
overflow-y: auto;
|
|
19791
|
+
top: 0;
|
|
19792
|
+
left: 0;
|
|
19793
|
+
}
|
|
19794
|
+
.v-dialog--fullscreen > .v-overlay__content > .v-card,
|
|
19795
|
+
.v-dialog--fullscreen > .v-overlay__content > .v-sheet,
|
|
19796
|
+
.v-dialog--fullscreen > .v-overlay__content > form > .v-card,
|
|
19797
|
+
.v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
|
|
19798
|
+
min-height: 100%;
|
|
19799
|
+
min-width: 100%;
|
|
19800
|
+
border-radius: 0;
|
|
19801
|
+
}
|
|
19802
|
+
|
|
19803
|
+
.v-dialog--scrollable > .v-overlay__content,
|
|
19804
|
+
.v-dialog--scrollable > .v-overlay__content > form {
|
|
19805
|
+
display: flex;
|
|
19806
|
+
}
|
|
19807
|
+
.v-dialog--scrollable > .v-overlay__content > .v-card,
|
|
19808
|
+
.v-dialog--scrollable > .v-overlay__content > form > .v-card {
|
|
19809
|
+
display: flex;
|
|
19810
|
+
flex: 1 1 100%;
|
|
19811
|
+
flex-direction: column;
|
|
19812
|
+
max-height: 100%;
|
|
19813
|
+
max-width: 100%;
|
|
19814
|
+
}
|
|
19815
|
+
.v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
|
|
19816
|
+
.v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
|
|
19817
|
+
-webkit-backface-visibility: hidden;
|
|
19818
|
+
backface-visibility: hidden;
|
|
19819
|
+
overflow-y: auto;
|
|
19820
|
+
}.v-data-table {
|
|
19821
|
+
width: 100%;
|
|
19822
|
+
}
|
|
19823
|
+
|
|
19824
|
+
.v-data-table__table {
|
|
19825
|
+
width: 100%;
|
|
19826
|
+
border-collapse: separate;
|
|
19827
|
+
border-spacing: 0;
|
|
19828
|
+
}
|
|
19829
|
+
|
|
19805
19830
|
.v-data-table__tr--focus {
|
|
19806
19831
|
border: 1px dotted black;
|
|
19807
19832
|
}
|
|
@@ -20035,6 +20060,55 @@ html.overflow-y-hidden {
|
|
|
20035
20060
|
|
|
20036
20061
|
.v-date-picker__title {
|
|
20037
20062
|
display: inline-block;
|
|
20063
|
+
}.v-date-picker-month {
|
|
20064
|
+
display: flex;
|
|
20065
|
+
justify-content: center;
|
|
20066
|
+
min-width: 328px;
|
|
20067
|
+
--v-date-picker-month-day-diff: 4px;
|
|
20068
|
+
}
|
|
20069
|
+
|
|
20070
|
+
.v-date-picker-month__weeks {
|
|
20071
|
+
display: grid;
|
|
20072
|
+
grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
|
|
20073
|
+
row-gap: 4px;
|
|
20074
|
+
font-size: 0.875rem;
|
|
20075
|
+
}
|
|
20076
|
+
.v-date-picker-month__weeks + .v-date-picker-month__days {
|
|
20077
|
+
grid-row-gap: 0;
|
|
20078
|
+
}
|
|
20079
|
+
|
|
20080
|
+
.v-date-picker-month__weekday {
|
|
20081
|
+
font-size: 0.875rem;
|
|
20082
|
+
}
|
|
20083
|
+
|
|
20084
|
+
.v-date-picker-month__days {
|
|
20085
|
+
display: grid;
|
|
20086
|
+
grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
|
|
20087
|
+
row-gap: 4px;
|
|
20088
|
+
flex: 1 1;
|
|
20089
|
+
justify-content: space-around;
|
|
20090
|
+
}
|
|
20091
|
+
|
|
20092
|
+
.v-date-picker-month__day {
|
|
20093
|
+
align-items: center;
|
|
20094
|
+
display: flex;
|
|
20095
|
+
justify-content: center;
|
|
20096
|
+
position: relative;
|
|
20097
|
+
}
|
|
20098
|
+
.v-date-picker-month__day--selected .v-btn {
|
|
20099
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
|
20100
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
20101
|
+
}
|
|
20102
|
+
.v-date-picker-month__day--week {
|
|
20103
|
+
font-size: var(--v-btn-size);
|
|
20104
|
+
}
|
|
20105
|
+
|
|
20106
|
+
.v-date-picker-month__day--adjacent {
|
|
20107
|
+
opacity: 0.5;
|
|
20108
|
+
}
|
|
20109
|
+
|
|
20110
|
+
.v-date-picker-month__day--hide-adjacent {
|
|
20111
|
+
opacity: 0;
|
|
20038
20112
|
}.v-date-picker-header {
|
|
20039
20113
|
display: grid;
|
|
20040
20114
|
grid-template-areas: "prepend content append";
|
|
@@ -20093,55 +20167,26 @@ html.overflow-y-hidden {
|
|
|
20093
20167
|
.date-picker-header-reverse-transition-leave-to {
|
|
20094
20168
|
opacity: 0;
|
|
20095
20169
|
transform: translate(0, 100%);
|
|
20096
|
-
}.v-date-picker-
|
|
20097
|
-
|
|
20098
|
-
|
|
20099
|
-
min-width: 328px;
|
|
20100
|
-
--v-date-picker-month-day-diff: 4px;
|
|
20101
|
-
}
|
|
20102
|
-
|
|
20103
|
-
.v-date-picker-month__weeks {
|
|
20104
|
-
display: grid;
|
|
20105
|
-
grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
|
|
20106
|
-
row-gap: 4px;
|
|
20107
|
-
font-size: 0.875rem;
|
|
20108
|
-
}
|
|
20109
|
-
.v-date-picker-month__weeks + .v-date-picker-month__days {
|
|
20110
|
-
grid-row-gap: 0;
|
|
20111
|
-
}
|
|
20112
|
-
|
|
20113
|
-
.v-date-picker-month__weekday {
|
|
20114
|
-
font-size: 0.875rem;
|
|
20170
|
+
}.v-date-picker-months {
|
|
20171
|
+
height: 320px;
|
|
20172
|
+
overflow-y: scroll;
|
|
20115
20173
|
}
|
|
20116
20174
|
|
|
20117
|
-
.v-date-picker-
|
|
20175
|
+
.v-date-picker-months__content {
|
|
20176
|
+
align-items: center;
|
|
20118
20177
|
display: grid;
|
|
20119
|
-
grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
|
|
20120
|
-
row-gap: 4px;
|
|
20121
20178
|
flex: 1 1;
|
|
20179
|
+
height: inherit;
|
|
20122
20180
|
justify-content: space-around;
|
|
20181
|
+
grid-template-columns: repeat(2, 1fr);
|
|
20182
|
+
grid-gap: 4px 24px;
|
|
20183
|
+
padding-inline-start: 36px;
|
|
20184
|
+
padding-inline-end: 36px;
|
|
20123
20185
|
}
|
|
20124
|
-
|
|
20125
|
-
|
|
20126
|
-
|
|
20127
|
-
|
|
20128
|
-
justify-content: center;
|
|
20129
|
-
position: relative;
|
|
20130
|
-
}
|
|
20131
|
-
.v-date-picker-month__day--selected .v-btn {
|
|
20132
|
-
background-color: rgb(var(--v-theme-surface-variant));
|
|
20133
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
|
20134
|
-
}
|
|
20135
|
-
.v-date-picker-month__day--week {
|
|
20136
|
-
font-size: var(--v-btn-size);
|
|
20137
|
-
}
|
|
20138
|
-
|
|
20139
|
-
.v-date-picker-month__day--adjacent {
|
|
20140
|
-
opacity: 0.5;
|
|
20141
|
-
}
|
|
20142
|
-
|
|
20143
|
-
.v-date-picker-month__day--hide-adjacent {
|
|
20144
|
-
opacity: 0;
|
|
20186
|
+
.v-date-picker-months__content .v-btn {
|
|
20187
|
+
text-transform: none;
|
|
20188
|
+
padding-inline-start: 8px;
|
|
20189
|
+
padding-inline-end: 8px;
|
|
20145
20190
|
}.v-date-picker-years {
|
|
20146
20191
|
height: 320px;
|
|
20147
20192
|
overflow-y: scroll;
|
|
@@ -20157,166 +20202,29 @@ html.overflow-y-hidden {
|
|
|
20157
20202
|
}
|
|
20158
20203
|
.v-date-picker-years__content .v-btn {
|
|
20159
20204
|
padding-inline: 8px;
|
|
20160
|
-
}.v-
|
|
20161
|
-
|
|
20162
|
-
|
|
20205
|
+
}.v-expansion-panel {
|
|
20206
|
+
background-color: rgb(var(--v-theme-surface));
|
|
20207
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
20163
20208
|
}
|
|
20164
|
-
|
|
20165
|
-
|
|
20166
|
-
align-items: center;
|
|
20167
|
-
display: grid;
|
|
20168
|
-
flex: 1 1;
|
|
20169
|
-
height: inherit;
|
|
20170
|
-
justify-content: space-around;
|
|
20171
|
-
grid-template-columns: repeat(2, 1fr);
|
|
20172
|
-
grid-gap: 4px 24px;
|
|
20173
|
-
padding-inline-start: 36px;
|
|
20174
|
-
padding-inline-end: 36px;
|
|
20209
|
+
.v-expansion-panel:not(:first-child)::after {
|
|
20210
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
20175
20211
|
}
|
|
20176
|
-
.v-
|
|
20177
|
-
|
|
20178
|
-
padding-inline-start: 8px;
|
|
20179
|
-
padding-inline-end: 8px;
|
|
20180
|
-
}.v-dialog {
|
|
20181
|
-
align-items: center;
|
|
20182
|
-
justify-content: center;
|
|
20183
|
-
margin: auto;
|
|
20212
|
+
.v-expansion-panel--disabled .v-expansion-panel-title {
|
|
20213
|
+
color: rgba(var(--v-theme-on-surface), 0.26);
|
|
20184
20214
|
}
|
|
20185
|
-
.v-
|
|
20186
|
-
|
|
20187
|
-
width: calc(100% - 48px);
|
|
20188
|
-
max-width: calc(100% - 48px);
|
|
20189
|
-
margin: 24px;
|
|
20215
|
+
.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
|
|
20216
|
+
opacity: 0.4615384615;
|
|
20190
20217
|
}
|
|
20191
|
-
|
|
20192
|
-
.v-
|
|
20218
|
+
|
|
20219
|
+
.v-expansion-panels {
|
|
20193
20220
|
display: flex;
|
|
20194
|
-
flex-
|
|
20195
|
-
|
|
20196
|
-
|
|
20197
|
-
|
|
20198
|
-
|
|
20199
|
-
|
|
20200
|
-
|
|
20201
|
-
--v-scrollbar-offset: 0px;
|
|
20202
|
-
border-radius: 4px;
|
|
20203
|
-
overflow-y: auto;
|
|
20204
|
-
box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
20205
|
-
}
|
|
20206
|
-
.v-dialog > .v-overlay__content > .v-card,
|
|
20207
|
-
.v-dialog > .v-overlay__content > form > .v-card {
|
|
20208
|
-
display: flex;
|
|
20209
|
-
flex-direction: column;
|
|
20210
|
-
}
|
|
20211
|
-
.v-dialog > .v-overlay__content > .v-card > .v-card-item,
|
|
20212
|
-
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
|
|
20213
|
-
padding: 14px 24px 0;
|
|
20214
|
-
}
|
|
20215
|
-
.v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text,
|
|
20216
|
-
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item + .v-card-text {
|
|
20217
|
-
padding-top: 10px;
|
|
20218
|
-
}
|
|
20219
|
-
.v-dialog > .v-overlay__content > .v-card > .v-card-text,
|
|
20220
|
-
.v-dialog > .v-overlay__content > form > .v-card > .v-card-text {
|
|
20221
|
-
font-size: inherit;
|
|
20222
|
-
letter-spacing: 0.03125em;
|
|
20223
|
-
line-height: inherit;
|
|
20224
|
-
padding: 16px 24px 10px;
|
|
20225
|
-
}
|
|
20226
|
-
|
|
20227
|
-
.v-dialog--fullscreen {
|
|
20228
|
-
--v-scrollbar-offset: 0px;
|
|
20229
|
-
}
|
|
20230
|
-
.v-dialog--fullscreen > .v-overlay__content {
|
|
20231
|
-
border-radius: 0;
|
|
20232
|
-
margin: 0;
|
|
20233
|
-
padding: 0;
|
|
20234
|
-
width: 100%;
|
|
20235
|
-
height: 100%;
|
|
20236
|
-
max-width: 100%;
|
|
20237
|
-
max-height: 100%;
|
|
20238
|
-
overflow-y: auto;
|
|
20239
|
-
top: 0;
|
|
20240
|
-
left: 0;
|
|
20241
|
-
}
|
|
20242
|
-
.v-dialog--fullscreen > .v-overlay__content > .v-card,
|
|
20243
|
-
.v-dialog--fullscreen > .v-overlay__content > .v-sheet,
|
|
20244
|
-
.v-dialog--fullscreen > .v-overlay__content > form > .v-card,
|
|
20245
|
-
.v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
|
|
20246
|
-
min-height: 100%;
|
|
20247
|
-
min-width: 100%;
|
|
20248
|
-
border-radius: 0;
|
|
20249
|
-
}
|
|
20250
|
-
|
|
20251
|
-
.v-dialog--scrollable > .v-overlay__content,
|
|
20252
|
-
.v-dialog--scrollable > .v-overlay__content > form {
|
|
20253
|
-
display: flex;
|
|
20254
|
-
}
|
|
20255
|
-
.v-dialog--scrollable > .v-overlay__content > .v-card,
|
|
20256
|
-
.v-dialog--scrollable > .v-overlay__content > form > .v-card {
|
|
20257
|
-
display: flex;
|
|
20258
|
-
flex: 1 1 100%;
|
|
20259
|
-
flex-direction: column;
|
|
20260
|
-
max-height: 100%;
|
|
20261
|
-
max-width: 100%;
|
|
20262
|
-
}
|
|
20263
|
-
.v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
|
|
20264
|
-
.v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
|
|
20265
|
-
-webkit-backface-visibility: hidden;
|
|
20266
|
-
backface-visibility: hidden;
|
|
20267
|
-
overflow-y: auto;
|
|
20268
|
-
}.v-divider {
|
|
20269
|
-
display: block;
|
|
20270
|
-
flex: 1 1 100%;
|
|
20271
|
-
height: 0px;
|
|
20272
|
-
max-height: 0px;
|
|
20273
|
-
opacity: var(--v-border-opacity);
|
|
20274
|
-
transition: inherit;
|
|
20275
|
-
border-style: solid;
|
|
20276
|
-
border-width: thin 0 0 0;
|
|
20277
|
-
}
|
|
20278
|
-
.v-divider--vertical {
|
|
20279
|
-
align-self: stretch;
|
|
20280
|
-
border-width: 0 thin 0 0;
|
|
20281
|
-
display: inline-flex;
|
|
20282
|
-
height: inherit;
|
|
20283
|
-
margin-left: -1px;
|
|
20284
|
-
max-height: 100%;
|
|
20285
|
-
max-width: 0px;
|
|
20286
|
-
vertical-align: text-bottom;
|
|
20287
|
-
width: 0px;
|
|
20288
|
-
}
|
|
20289
|
-
.v-divider--inset:not(.v-divider--vertical) {
|
|
20290
|
-
max-width: calc(100% - 72px);
|
|
20291
|
-
margin-inline-start: 72px;
|
|
20292
|
-
}
|
|
20293
|
-
.v-divider--inset.v-divider--vertical {
|
|
20294
|
-
margin-bottom: 8px;
|
|
20295
|
-
margin-top: 8px;
|
|
20296
|
-
max-height: calc(100% - 16px);
|
|
20297
|
-
}.v-expansion-panel {
|
|
20298
|
-
background-color: rgb(var(--v-theme-surface));
|
|
20299
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
20300
|
-
}
|
|
20301
|
-
.v-expansion-panel:not(:first-child)::after {
|
|
20302
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
20303
|
-
}
|
|
20304
|
-
.v-expansion-panel--disabled .v-expansion-panel-title {
|
|
20305
|
-
color: rgba(var(--v-theme-on-surface), 0.26);
|
|
20306
|
-
}
|
|
20307
|
-
.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
|
|
20308
|
-
opacity: 0.4615384615;
|
|
20309
|
-
}
|
|
20310
|
-
|
|
20311
|
-
.v-expansion-panels {
|
|
20312
|
-
display: flex;
|
|
20313
|
-
flex-wrap: wrap;
|
|
20314
|
-
justify-content: center;
|
|
20315
|
-
list-style-type: none;
|
|
20316
|
-
padding: 0;
|
|
20317
|
-
width: 100%;
|
|
20318
|
-
position: relative;
|
|
20319
|
-
z-index: 1;
|
|
20221
|
+
flex-wrap: wrap;
|
|
20222
|
+
justify-content: center;
|
|
20223
|
+
list-style-type: none;
|
|
20224
|
+
padding: 0;
|
|
20225
|
+
width: 100%;
|
|
20226
|
+
position: relative;
|
|
20227
|
+
z-index: 1;
|
|
20320
20228
|
}
|
|
20321
20229
|
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
|
20322
20230
|
border-bottom-left-radius: 0 !important;
|
|
@@ -20493,26 +20401,35 @@ html.overflow-y-hidden {
|
|
|
20493
20401
|
}
|
|
20494
20402
|
.v-expansion-panels--variant-inset > .v-expansion-panel--active {
|
|
20495
20403
|
max-width: calc(100% - 32px);
|
|
20496
|
-
}.v-
|
|
20497
|
-
|
|
20498
|
-
|
|
20499
|
-
|
|
20500
|
-
|
|
20404
|
+
}.v-divider {
|
|
20405
|
+
display: block;
|
|
20406
|
+
flex: 1 1 100%;
|
|
20407
|
+
height: 0px;
|
|
20408
|
+
max-height: 0px;
|
|
20409
|
+
opacity: var(--v-border-opacity);
|
|
20410
|
+
transition: inherit;
|
|
20411
|
+
border-style: solid;
|
|
20412
|
+
border-width: thin 0 0 0;
|
|
20501
20413
|
}
|
|
20502
|
-
.v-
|
|
20503
|
-
|
|
20504
|
-
|
|
20505
|
-
|
|
20506
|
-
|
|
20507
|
-
|
|
20508
|
-
|
|
20509
|
-
|
|
20414
|
+
.v-divider--vertical {
|
|
20415
|
+
align-self: stretch;
|
|
20416
|
+
border-width: 0 thin 0 0;
|
|
20417
|
+
display: inline-flex;
|
|
20418
|
+
height: inherit;
|
|
20419
|
+
margin-left: -1px;
|
|
20420
|
+
max-height: 100%;
|
|
20421
|
+
max-width: 0px;
|
|
20422
|
+
vertical-align: text-bottom;
|
|
20423
|
+
width: 0px;
|
|
20510
20424
|
}
|
|
20511
|
-
.v-
|
|
20512
|
-
|
|
20425
|
+
.v-divider--inset:not(.v-divider--vertical) {
|
|
20426
|
+
max-width: calc(100% - 72px);
|
|
20427
|
+
margin-inline-start: 72px;
|
|
20513
20428
|
}
|
|
20514
|
-
.v-
|
|
20515
|
-
|
|
20429
|
+
.v-divider--inset.v-divider--vertical {
|
|
20430
|
+
margin-bottom: 8px;
|
|
20431
|
+
margin-top: 8px;
|
|
20432
|
+
max-height: calc(100% - 16px);
|
|
20516
20433
|
}/* region INPUT */
|
|
20517
20434
|
.v-field {
|
|
20518
20435
|
display: grid;
|
|
@@ -21062,7 +20979,27 @@ textarea.v-field__input::placeholder {
|
|
|
21062
20979
|
opacity: 0;
|
|
21063
20980
|
}
|
|
21064
20981
|
|
|
21065
|
-
/* endregion */.v-
|
|
20982
|
+
/* endregion */.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
20983
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
20984
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
20985
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
20986
|
+
top: 0px;
|
|
20987
|
+
}
|
|
20988
|
+
.v-file-input input[type=file] {
|
|
20989
|
+
height: 100%;
|
|
20990
|
+
left: 0;
|
|
20991
|
+
opacity: 0;
|
|
20992
|
+
position: absolute;
|
|
20993
|
+
top: 0;
|
|
20994
|
+
width: 100%;
|
|
20995
|
+
z-index: 1;
|
|
20996
|
+
}
|
|
20997
|
+
.v-file-input .v-input__details {
|
|
20998
|
+
padding-inline: 16px;
|
|
20999
|
+
}
|
|
21000
|
+
.v-input--plain-underlined.v-file-input .v-input__details {
|
|
21001
|
+
padding-inline: 0;
|
|
21002
|
+
}.v-footer {
|
|
21066
21003
|
align-items: center;
|
|
21067
21004
|
display: flex;
|
|
21068
21005
|
flex: 1 1 auto;
|
|
@@ -21908,8 +21845,6 @@ textarea.v-field__input::placeholder {
|
|
|
21908
21845
|
}
|
|
21909
21846
|
.v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
|
|
21910
21847
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
21911
|
-
}.v-locale-provider {
|
|
21912
|
-
display: contents;
|
|
21913
21848
|
}.v-main {
|
|
21914
21849
|
flex: 1 0 auto;
|
|
21915
21850
|
max-width: 100%;
|
|
@@ -21938,6 +21873,8 @@ textarea.v-field__input::placeholder {
|
|
|
21938
21873
|
--v-layout-right: 0px;
|
|
21939
21874
|
--v-layout-top: 0px;
|
|
21940
21875
|
--v-layout-bottom: 0px;
|
|
21876
|
+
}.v-locale-provider {
|
|
21877
|
+
display: contents;
|
|
21941
21878
|
}.v-menu > .v-overlay__content {
|
|
21942
21879
|
display: flex;
|
|
21943
21880
|
flex-direction: column;
|
|
@@ -22187,14 +22124,6 @@ html.v-overlay-scroll-blocked {
|
|
|
22187
22124
|
}
|
|
22188
22125
|
.v-parallax--active > .v-img__img {
|
|
22189
22126
|
will-change: transform;
|
|
22190
|
-
}.v-pagination__list {
|
|
22191
|
-
display: inline-flex;
|
|
22192
|
-
list-style-type: none;
|
|
22193
|
-
justify-content: center;
|
|
22194
|
-
width: 100%;
|
|
22195
|
-
}
|
|
22196
|
-
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
|
22197
|
-
margin: 0.3rem;
|
|
22198
22127
|
}.v-progress-circular {
|
|
22199
22128
|
align-items: center;
|
|
22200
22129
|
display: inline-flex;
|
|
@@ -22297,6 +22226,14 @@ html.v-overlay-scroll-blocked {
|
|
|
22297
22226
|
100% {
|
|
22298
22227
|
transform: rotate(270deg);
|
|
22299
22228
|
}
|
|
22229
|
+
}.v-pagination__list {
|
|
22230
|
+
display: inline-flex;
|
|
22231
|
+
list-style-type: none;
|
|
22232
|
+
justify-content: center;
|
|
22233
|
+
width: 100%;
|
|
22234
|
+
}
|
|
22235
|
+
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
|
22236
|
+
margin: 0.3rem;
|
|
22300
22237
|
}.v-progress-linear {
|
|
22301
22238
|
background: transparent;
|
|
22302
22239
|
overflow: hidden;
|
|
@@ -22813,34 +22750,6 @@ html.v-overlay-scroll-blocked {
|
|
|
22813
22750
|
.v-selection-control-group--inline {
|
|
22814
22751
|
flex-direction: row;
|
|
22815
22752
|
flex-wrap: wrap;
|
|
22816
|
-
}.v-sheet {
|
|
22817
|
-
display: block;
|
|
22818
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
22819
|
-
border-style: solid;
|
|
22820
|
-
border-width: 0;
|
|
22821
|
-
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
22822
|
-
border-radius: 0;
|
|
22823
|
-
background: rgb(var(--v-theme-surface));
|
|
22824
|
-
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
22825
|
-
}
|
|
22826
|
-
.v-sheet--border {
|
|
22827
|
-
border-width: thin;
|
|
22828
|
-
box-shadow: none;
|
|
22829
|
-
}
|
|
22830
|
-
.v-sheet--absolute {
|
|
22831
|
-
position: absolute;
|
|
22832
|
-
}
|
|
22833
|
-
.v-sheet--fixed {
|
|
22834
|
-
position: fixed;
|
|
22835
|
-
}
|
|
22836
|
-
.v-sheet--relative {
|
|
22837
|
-
position: relative;
|
|
22838
|
-
}
|
|
22839
|
-
.v-sheet--sticky {
|
|
22840
|
-
position: sticky;
|
|
22841
|
-
}
|
|
22842
|
-
.v-sheet--rounded {
|
|
22843
|
-
border-radius: 4px;
|
|
22844
22753
|
}.v-skeleton-loader {
|
|
22845
22754
|
align-items: center;
|
|
22846
22755
|
background: rgb(var(--v-theme-surface));
|
|
@@ -23064,6 +22973,34 @@ html.v-overlay-scroll-blocked {
|
|
|
23064
22973
|
100% {
|
|
23065
22974
|
transform: translateX(100%);
|
|
23066
22975
|
}
|
|
22976
|
+
}.v-sheet {
|
|
22977
|
+
display: block;
|
|
22978
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
22979
|
+
border-style: solid;
|
|
22980
|
+
border-width: 0;
|
|
22981
|
+
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
22982
|
+
border-radius: 0;
|
|
22983
|
+
background: rgb(var(--v-theme-surface));
|
|
22984
|
+
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
22985
|
+
}
|
|
22986
|
+
.v-sheet--border {
|
|
22987
|
+
border-width: thin;
|
|
22988
|
+
box-shadow: none;
|
|
22989
|
+
}
|
|
22990
|
+
.v-sheet--absolute {
|
|
22991
|
+
position: absolute;
|
|
22992
|
+
}
|
|
22993
|
+
.v-sheet--fixed {
|
|
22994
|
+
position: fixed;
|
|
22995
|
+
}
|
|
22996
|
+
.v-sheet--relative {
|
|
22997
|
+
position: relative;
|
|
22998
|
+
}
|
|
22999
|
+
.v-sheet--sticky {
|
|
23000
|
+
position: sticky;
|
|
23001
|
+
}
|
|
23002
|
+
.v-sheet--rounded {
|
|
23003
|
+
border-radius: 4px;
|
|
23067
23004
|
}.v-slide-group {
|
|
23068
23005
|
display: flex;
|
|
23069
23006
|
overflow: hidden;
|
|
@@ -23106,125 +23043,6 @@ html.v-overlay-scroll-blocked {
|
|
|
23106
23043
|
.v-slide-group--vertical .v-slide-group__container,
|
|
23107
23044
|
.v-slide-group--vertical .v-slide-group__content {
|
|
23108
23045
|
flex-direction: column;
|
|
23109
|
-
}.v-snackbar {
|
|
23110
|
-
justify-content: center;
|
|
23111
|
-
z-index: 10000;
|
|
23112
|
-
margin: 8px;
|
|
23113
|
-
margin-inline-end: calc(8px + var(--v-scrollbar-offset));
|
|
23114
|
-
}
|
|
23115
|
-
.v-snackbar:not(.v-snackbar--centered):not(.v-snackbar--top) {
|
|
23116
|
-
align-items: flex-end;
|
|
23117
|
-
}
|
|
23118
|
-
.v-snackbar__wrapper {
|
|
23119
|
-
align-items: center;
|
|
23120
|
-
display: flex;
|
|
23121
|
-
max-width: 672px;
|
|
23122
|
-
min-height: 48px;
|
|
23123
|
-
min-width: 344px;
|
|
23124
|
-
overflow: hidden;
|
|
23125
|
-
padding: 0;
|
|
23126
|
-
border-radius: 4px;
|
|
23127
|
-
}
|
|
23128
|
-
.v-snackbar--variant-plain, .v-snackbar--variant-outlined, .v-snackbar--variant-text, .v-snackbar--variant-tonal {
|
|
23129
|
-
background: transparent;
|
|
23130
|
-
color: inherit;
|
|
23131
|
-
}
|
|
23132
|
-
.v-snackbar--variant-plain {
|
|
23133
|
-
opacity: 0.62;
|
|
23134
|
-
}
|
|
23135
|
-
.v-snackbar--variant-plain:focus, .v-snackbar--variant-plain:hover {
|
|
23136
|
-
opacity: 1;
|
|
23137
|
-
}
|
|
23138
|
-
.v-snackbar--variant-plain .v-snackbar__overlay {
|
|
23139
|
-
display: none;
|
|
23140
|
-
}
|
|
23141
|
-
.v-snackbar--variant-elevated, .v-snackbar--variant-flat {
|
|
23142
|
-
background: rgb(var(--v-theme-surface-variant));
|
|
23143
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
|
23144
|
-
}
|
|
23145
|
-
.v-snackbar--variant-elevated {
|
|
23146
|
-
box-shadow: 0px 3px 5px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 6px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 18px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
23147
|
-
}
|
|
23148
|
-
.v-snackbar--variant-flat {
|
|
23149
|
-
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
23150
|
-
}
|
|
23151
|
-
.v-snackbar--variant-outlined {
|
|
23152
|
-
border: thin solid currentColor;
|
|
23153
|
-
}
|
|
23154
|
-
.v-snackbar--variant-text .v-snackbar__overlay {
|
|
23155
|
-
background: currentColor;
|
|
23156
|
-
}
|
|
23157
|
-
.v-snackbar--variant-tonal .v-snackbar__underlay {
|
|
23158
|
-
background: currentColor;
|
|
23159
|
-
opacity: var(--v-activated-opacity);
|
|
23160
|
-
border-radius: inherit;
|
|
23161
|
-
position: absolute;
|
|
23162
|
-
top: 0;
|
|
23163
|
-
right: 0;
|
|
23164
|
-
bottom: 0;
|
|
23165
|
-
left: 0;
|
|
23166
|
-
pointer-events: none;
|
|
23167
|
-
}
|
|
23168
|
-
|
|
23169
|
-
.v-snackbar__content {
|
|
23170
|
-
flex-grow: 1;
|
|
23171
|
-
font-size: 0.875rem;
|
|
23172
|
-
font-weight: 400;
|
|
23173
|
-
letter-spacing: 0.0178571429em;
|
|
23174
|
-
line-height: 1.25rem;
|
|
23175
|
-
margin-right: auto;
|
|
23176
|
-
padding: 14px 16px;
|
|
23177
|
-
text-align: initial;
|
|
23178
|
-
}
|
|
23179
|
-
.v-snackbar__actions {
|
|
23180
|
-
align-items: center;
|
|
23181
|
-
align-self: center;
|
|
23182
|
-
display: flex;
|
|
23183
|
-
margin-inline-end: 8px;
|
|
23184
|
-
}
|
|
23185
|
-
.v-snackbar__actions > .v-btn {
|
|
23186
|
-
padding: 0 8px;
|
|
23187
|
-
min-width: auto;
|
|
23188
|
-
}
|
|
23189
|
-
.v-snackbar__timer {
|
|
23190
|
-
width: 100%;
|
|
23191
|
-
position: absolute;
|
|
23192
|
-
top: 0;
|
|
23193
|
-
}
|
|
23194
|
-
.v-snackbar__timer .v-progress-linear {
|
|
23195
|
-
transition: 0.2s linear;
|
|
23196
|
-
}
|
|
23197
|
-
.v-snackbar--absolute {
|
|
23198
|
-
position: absolute;
|
|
23199
|
-
z-index: 1;
|
|
23200
|
-
}
|
|
23201
|
-
.v-snackbar--multi-line .v-snackbar__wrapper {
|
|
23202
|
-
min-height: 68px;
|
|
23203
|
-
}
|
|
23204
|
-
.v-snackbar--vertical .v-snackbar__wrapper {
|
|
23205
|
-
flex-direction: column;
|
|
23206
|
-
}
|
|
23207
|
-
.v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions {
|
|
23208
|
-
align-self: flex-end;
|
|
23209
|
-
margin-bottom: 8px;
|
|
23210
|
-
}
|
|
23211
|
-
|
|
23212
|
-
.v-snackbar-transition-enter-active, .v-snackbar-transition-leave-active {
|
|
23213
|
-
transition-duration: 0.15s;
|
|
23214
|
-
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
23215
|
-
}
|
|
23216
|
-
.v-snackbar-transition-enter-active {
|
|
23217
|
-
transition-property: opacity, transform;
|
|
23218
|
-
}
|
|
23219
|
-
.v-snackbar-transition-enter-from {
|
|
23220
|
-
opacity: 0;
|
|
23221
|
-
transform: scale(0.8);
|
|
23222
|
-
}
|
|
23223
|
-
.v-snackbar-transition-leave-active {
|
|
23224
|
-
transition-property: opacity;
|
|
23225
|
-
}
|
|
23226
|
-
.v-snackbar-transition-leave-to {
|
|
23227
|
-
opacity: 0;
|
|
23228
23046
|
}.v-stepper.v-sheet {
|
|
23229
23047
|
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
23230
23048
|
border-radius: 4px;
|
|
@@ -23715,45 +23533,6 @@ html.v-overlay-scroll-blocked {
|
|
|
23715
23533
|
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
|
23716
23534
|
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
|
23717
23535
|
border-top: 0px !important;
|
|
23718
|
-
}.v-textarea .v-field {
|
|
23719
|
-
--v-textarea-control-height: var(--v-input-control-height);
|
|
23720
|
-
}
|
|
23721
|
-
.v-textarea .v-field__field {
|
|
23722
|
-
--v-input-control-height: var(--v-textarea-control-height);
|
|
23723
|
-
}
|
|
23724
|
-
.v-textarea .v-field__input {
|
|
23725
|
-
flex: 1 1 auto;
|
|
23726
|
-
outline: none;
|
|
23727
|
-
-webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
|
23728
|
-
mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
|
23729
|
-
}
|
|
23730
|
-
.v-textarea .v-field__input.v-textarea__sizer {
|
|
23731
|
-
visibility: hidden;
|
|
23732
|
-
position: absolute;
|
|
23733
|
-
top: 0;
|
|
23734
|
-
left: 0;
|
|
23735
|
-
height: 0 !important;
|
|
23736
|
-
min-height: 0 !important;
|
|
23737
|
-
pointer-events: none;
|
|
23738
|
-
}
|
|
23739
|
-
.v-textarea--no-resize .v-field__input {
|
|
23740
|
-
resize: none;
|
|
23741
|
-
}
|
|
23742
|
-
.v-textarea .v-field--no-label textarea,
|
|
23743
|
-
.v-textarea .v-field--active textarea {
|
|
23744
|
-
opacity: 1;
|
|
23745
|
-
}
|
|
23746
|
-
.v-textarea textarea {
|
|
23747
|
-
opacity: 0;
|
|
23748
|
-
flex: 1;
|
|
23749
|
-
min-width: 0;
|
|
23750
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
23751
|
-
}
|
|
23752
|
-
.v-textarea textarea:focus, .v-textarea textarea:active {
|
|
23753
|
-
outline: none;
|
|
23754
|
-
}
|
|
23755
|
-
.v-textarea textarea:invalid {
|
|
23756
|
-
box-shadow: none;
|
|
23757
23536
|
}/* region BLOCK */
|
|
23758
23537
|
.v-text-field input {
|
|
23759
23538
|
color: inherit;
|
|
@@ -23821,61 +23600,227 @@ html.v-overlay-scroll-blocked {
|
|
|
23821
23600
|
padding-inline-end: var(--v-field-padding-end);
|
|
23822
23601
|
}
|
|
23823
23602
|
|
|
23824
|
-
/* endregion */.v-
|
|
23825
|
-
|
|
23826
|
-
color: rgb(var(--v-theme-on-background));
|
|
23827
|
-
}.v-timeline .v-timeline-divider__dot {
|
|
23828
|
-
background: rgb(var(--v-theme-on-surface-variant));
|
|
23603
|
+
/* endregion */.v-textarea .v-field {
|
|
23604
|
+
--v-textarea-control-height: var(--v-input-control-height);
|
|
23829
23605
|
}
|
|
23830
|
-
.v-
|
|
23831
|
-
|
|
23606
|
+
.v-textarea .v-field__field {
|
|
23607
|
+
--v-input-control-height: var(--v-textarea-control-height);
|
|
23832
23608
|
}
|
|
23833
|
-
|
|
23834
|
-
|
|
23835
|
-
|
|
23836
|
-
|
|
23837
|
-
|
|
23609
|
+
.v-textarea .v-field__input {
|
|
23610
|
+
flex: 1 1 auto;
|
|
23611
|
+
outline: none;
|
|
23612
|
+
-webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
|
23613
|
+
mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
|
23838
23614
|
}
|
|
23839
|
-
.v-
|
|
23840
|
-
|
|
23841
|
-
|
|
23615
|
+
.v-textarea .v-field__input.v-textarea__sizer {
|
|
23616
|
+
visibility: hidden;
|
|
23617
|
+
position: absolute;
|
|
23618
|
+
top: 0;
|
|
23619
|
+
left: 0;
|
|
23620
|
+
height: 0 !important;
|
|
23621
|
+
min-height: 0 !important;
|
|
23622
|
+
pointer-events: none;
|
|
23842
23623
|
}
|
|
23843
|
-
.v-
|
|
23844
|
-
|
|
23845
|
-
padding-block-start: 24px;
|
|
23624
|
+
.v-textarea--no-resize .v-field__input {
|
|
23625
|
+
resize: none;
|
|
23846
23626
|
}
|
|
23847
|
-
.v-
|
|
23848
|
-
|
|
23849
|
-
|
|
23850
|
-
align-self: flex-end;
|
|
23627
|
+
.v-textarea .v-field--no-label textarea,
|
|
23628
|
+
.v-textarea .v-field--active textarea {
|
|
23629
|
+
opacity: 1;
|
|
23851
23630
|
}
|
|
23852
|
-
.v-
|
|
23853
|
-
|
|
23854
|
-
|
|
23855
|
-
|
|
23631
|
+
.v-textarea textarea {
|
|
23632
|
+
opacity: 0;
|
|
23633
|
+
flex: 1;
|
|
23634
|
+
min-width: 0;
|
|
23635
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
23856
23636
|
}
|
|
23857
|
-
.v-
|
|
23858
|
-
|
|
23859
|
-
padding-block-start: 24px;
|
|
23637
|
+
.v-textarea textarea:focus, .v-textarea textarea:active {
|
|
23638
|
+
outline: none;
|
|
23860
23639
|
}
|
|
23861
|
-
|
|
23862
|
-
|
|
23863
|
-
|
|
23864
|
-
|
|
23640
|
+
.v-textarea textarea:invalid {
|
|
23641
|
+
box-shadow: none;
|
|
23642
|
+
}.v-theme-provider {
|
|
23643
|
+
background: rgb(var(--v-theme-background));
|
|
23644
|
+
color: rgb(var(--v-theme-on-background));
|
|
23645
|
+
}.v-toolbar {
|
|
23646
|
+
align-items: flex-start;
|
|
23647
|
+
display: flex;
|
|
23648
|
+
flex: none;
|
|
23649
|
+
flex-direction: column;
|
|
23650
|
+
justify-content: space-between;
|
|
23651
|
+
max-width: 100%;
|
|
23652
|
+
overflow: hidden;
|
|
23653
|
+
position: relative;
|
|
23654
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
23655
|
+
transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
|
|
23656
|
+
width: 100%;
|
|
23657
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
23658
|
+
border-style: solid;
|
|
23659
|
+
border-width: 0;
|
|
23660
|
+
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
23661
|
+
border-radius: 0;
|
|
23662
|
+
background: rgb(var(--v-theme-on-surface-variant));
|
|
23663
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
23865
23664
|
}
|
|
23866
|
-
.v-
|
|
23867
|
-
|
|
23665
|
+
.v-toolbar--border {
|
|
23666
|
+
border-width: thin;
|
|
23667
|
+
box-shadow: none;
|
|
23868
23668
|
}
|
|
23869
|
-
.v-
|
|
23870
|
-
|
|
23669
|
+
.v-toolbar--absolute {
|
|
23670
|
+
position: absolute;
|
|
23871
23671
|
}
|
|
23872
|
-
.v-
|
|
23873
|
-
|
|
23874
|
-
|
|
23672
|
+
.v-toolbar--collapse {
|
|
23673
|
+
max-width: 112px;
|
|
23674
|
+
overflow: hidden;
|
|
23675
|
+
border-end-end-radius: 24px;
|
|
23875
23676
|
}
|
|
23876
|
-
.v-
|
|
23877
|
-
|
|
23878
|
-
|
|
23677
|
+
.v-toolbar--collapse .v-toolbar-title {
|
|
23678
|
+
display: none;
|
|
23679
|
+
}
|
|
23680
|
+
.v-toolbar--flat {
|
|
23681
|
+
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
23682
|
+
}
|
|
23683
|
+
.v-toolbar--floating {
|
|
23684
|
+
display: inline-flex;
|
|
23685
|
+
}
|
|
23686
|
+
.v-toolbar--rounded {
|
|
23687
|
+
border-radius: 4px;
|
|
23688
|
+
}
|
|
23689
|
+
|
|
23690
|
+
.v-toolbar__content,
|
|
23691
|
+
.v-toolbar__extension {
|
|
23692
|
+
align-items: center;
|
|
23693
|
+
display: flex;
|
|
23694
|
+
flex: 0 0 auto;
|
|
23695
|
+
position: relative;
|
|
23696
|
+
transition: inherit;
|
|
23697
|
+
width: 100%;
|
|
23698
|
+
}
|
|
23699
|
+
|
|
23700
|
+
.v-toolbar__content > .v-btn:first-child {
|
|
23701
|
+
margin-inline-start: 10px;
|
|
23702
|
+
}
|
|
23703
|
+
.v-toolbar__content > .v-btn:last-child {
|
|
23704
|
+
margin-inline-end: 10px;
|
|
23705
|
+
}
|
|
23706
|
+
.v-toolbar__content > .v-toolbar-title {
|
|
23707
|
+
margin-inline-start: 16px;
|
|
23708
|
+
}
|
|
23709
|
+
.v-toolbar--density-prominent .v-toolbar__content {
|
|
23710
|
+
align-items: flex-start;
|
|
23711
|
+
}
|
|
23712
|
+
|
|
23713
|
+
.v-toolbar__image {
|
|
23714
|
+
position: absolute;
|
|
23715
|
+
top: 0;
|
|
23716
|
+
left: 0;
|
|
23717
|
+
width: 100%;
|
|
23718
|
+
height: 100%;
|
|
23719
|
+
display: flex;
|
|
23720
|
+
opacity: var(--v-toolbar-image-opacity, 1);
|
|
23721
|
+
transition-property: opacity;
|
|
23722
|
+
}
|
|
23723
|
+
|
|
23724
|
+
.v-toolbar__prepend,
|
|
23725
|
+
.v-toolbar__append {
|
|
23726
|
+
align-items: center;
|
|
23727
|
+
align-self: stretch;
|
|
23728
|
+
display: flex;
|
|
23729
|
+
}
|
|
23730
|
+
|
|
23731
|
+
.v-toolbar__prepend {
|
|
23732
|
+
margin-inline: 10px auto;
|
|
23733
|
+
}
|
|
23734
|
+
|
|
23735
|
+
.v-toolbar__append {
|
|
23736
|
+
margin-inline: auto 10px;
|
|
23737
|
+
}
|
|
23738
|
+
|
|
23739
|
+
.v-toolbar-title {
|
|
23740
|
+
flex: 1 1;
|
|
23741
|
+
font-size: 1.25rem;
|
|
23742
|
+
min-width: 0;
|
|
23743
|
+
font-size: 1.25rem;
|
|
23744
|
+
font-weight: 400;
|
|
23745
|
+
letter-spacing: 0;
|
|
23746
|
+
line-height: 1.75rem;
|
|
23747
|
+
text-transform: none;
|
|
23748
|
+
}
|
|
23749
|
+
.v-toolbar--density-prominent .v-toolbar-title {
|
|
23750
|
+
align-self: flex-end;
|
|
23751
|
+
padding-bottom: 6px;
|
|
23752
|
+
font-size: 1.5rem;
|
|
23753
|
+
font-weight: 400;
|
|
23754
|
+
letter-spacing: 0;
|
|
23755
|
+
line-height: 2.25rem;
|
|
23756
|
+
text-transform: none;
|
|
23757
|
+
}
|
|
23758
|
+
|
|
23759
|
+
.v-toolbar-title__placeholder {
|
|
23760
|
+
overflow: hidden;
|
|
23761
|
+
text-overflow: ellipsis;
|
|
23762
|
+
white-space: nowrap;
|
|
23763
|
+
}
|
|
23764
|
+
|
|
23765
|
+
.v-toolbar-items {
|
|
23766
|
+
display: flex;
|
|
23767
|
+
height: inherit;
|
|
23768
|
+
align-self: stretch;
|
|
23769
|
+
}
|
|
23770
|
+
.v-toolbar-items > .v-btn {
|
|
23771
|
+
border-radius: 0;
|
|
23772
|
+
}.v-timeline .v-timeline-divider__dot {
|
|
23773
|
+
background: rgb(var(--v-theme-on-surface-variant));
|
|
23774
|
+
}
|
|
23775
|
+
.v-timeline .v-timeline-divider__inner-dot {
|
|
23776
|
+
background: rgb(var(--v-theme-on-surface));
|
|
23777
|
+
}
|
|
23778
|
+
|
|
23779
|
+
.v-timeline {
|
|
23780
|
+
display: grid;
|
|
23781
|
+
grid-auto-flow: dense;
|
|
23782
|
+
position: relative;
|
|
23783
|
+
}
|
|
23784
|
+
.v-timeline--horizontal.v-timeline {
|
|
23785
|
+
grid-column-gap: 24px;
|
|
23786
|
+
width: 100%;
|
|
23787
|
+
}
|
|
23788
|
+
.v-timeline--horizontal.v-timeline .v-timeline-item:nth-child(2n) .v-timeline-item__body {
|
|
23789
|
+
grid-row: 3;
|
|
23790
|
+
padding-block-start: 24px;
|
|
23791
|
+
}
|
|
23792
|
+
.v-timeline--horizontal.v-timeline .v-timeline-item:nth-child(2n) .v-timeline-item__opposite {
|
|
23793
|
+
grid-row: 1;
|
|
23794
|
+
padding-block-end: 24px;
|
|
23795
|
+
align-self: flex-end;
|
|
23796
|
+
}
|
|
23797
|
+
.v-timeline--horizontal.v-timeline .v-timeline-item:nth-child(2n+1) .v-timeline-item__body {
|
|
23798
|
+
grid-row: 1;
|
|
23799
|
+
padding-block-end: 24px;
|
|
23800
|
+
align-self: flex-end;
|
|
23801
|
+
}
|
|
23802
|
+
.v-timeline--horizontal.v-timeline .v-timeline-item:nth-child(2n+1) .v-timeline-item__opposite {
|
|
23803
|
+
grid-row: 3;
|
|
23804
|
+
padding-block-start: 24px;
|
|
23805
|
+
}
|
|
23806
|
+
|
|
23807
|
+
.v-timeline--vertical.v-timeline {
|
|
23808
|
+
row-gap: 24px;
|
|
23809
|
+
height: 100%;
|
|
23810
|
+
}
|
|
23811
|
+
.v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-divider, .v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-item__opposite {
|
|
23812
|
+
padding-block-start: 24px;
|
|
23813
|
+
}
|
|
23814
|
+
.v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-divider, .v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-item__opposite {
|
|
23815
|
+
padding-block-end: 24px;
|
|
23816
|
+
}
|
|
23817
|
+
.v-timeline--vertical.v-timeline .v-timeline-item:nth-child(2n) .v-timeline-item__body {
|
|
23818
|
+
grid-column: 1;
|
|
23819
|
+
padding-inline-end: 24px;
|
|
23820
|
+
}
|
|
23821
|
+
.v-timeline--vertical.v-timeline .v-timeline-item:nth-child(2n) .v-timeline-item__opposite {
|
|
23822
|
+
grid-column: 3;
|
|
23823
|
+
padding-inline-start: 24px;
|
|
23879
23824
|
}
|
|
23880
23825
|
.v-timeline--vertical.v-timeline .v-timeline-item:nth-child(2n+1) .v-timeline-item__body {
|
|
23881
23826
|
grid-column: 3;
|
|
@@ -24261,133 +24206,75 @@ html.v-overlay-scroll-blocked {
|
|
|
24261
24206
|
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
|
24262
24207
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
24263
24208
|
transition-duration: 75ms;
|
|
24264
|
-
}.v-
|
|
24265
|
-
|
|
24209
|
+
}.v-window {
|
|
24210
|
+
overflow: hidden;
|
|
24211
|
+
}
|
|
24212
|
+
.v-window__container {
|
|
24266
24213
|
display: flex;
|
|
24267
|
-
flex: none;
|
|
24268
24214
|
flex-direction: column;
|
|
24269
|
-
|
|
24270
|
-
max-width: 100%;
|
|
24271
|
-
overflow: hidden;
|
|
24215
|
+
height: inherit;
|
|
24272
24216
|
position: relative;
|
|
24273
|
-
transition: 0.
|
|
24274
|
-
transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
|
|
24275
|
-
width: 100%;
|
|
24276
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
24277
|
-
border-style: solid;
|
|
24278
|
-
border-width: 0;
|
|
24279
|
-
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
24280
|
-
border-radius: 0;
|
|
24281
|
-
background: rgb(var(--v-theme-on-surface-variant));
|
|
24282
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
24283
|
-
}
|
|
24284
|
-
.v-toolbar--border {
|
|
24285
|
-
border-width: thin;
|
|
24286
|
-
box-shadow: none;
|
|
24217
|
+
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
|
24287
24218
|
}
|
|
24288
|
-
.v-
|
|
24219
|
+
.v-window__controls {
|
|
24289
24220
|
position: absolute;
|
|
24221
|
+
left: 0;
|
|
24222
|
+
top: 0;
|
|
24223
|
+
width: 100%;
|
|
24224
|
+
height: 100%;
|
|
24225
|
+
display: flex;
|
|
24226
|
+
align-items: center;
|
|
24227
|
+
justify-content: space-between;
|
|
24228
|
+
padding: 0 16px;
|
|
24229
|
+
pointer-events: none;
|
|
24290
24230
|
}
|
|
24291
|
-
.v-
|
|
24292
|
-
|
|
24231
|
+
.v-window__controls * {
|
|
24232
|
+
pointer-events: auto;
|
|
24233
|
+
}
|
|
24234
|
+
.v-window--show-arrows-on-hover {
|
|
24293
24235
|
overflow: hidden;
|
|
24294
|
-
border-end-end-radius: 24px;
|
|
24295
24236
|
}
|
|
24296
|
-
.v-
|
|
24297
|
-
|
|
24237
|
+
.v-window--show-arrows-on-hover .v-window__left {
|
|
24238
|
+
transform: translateX(-200%);
|
|
24298
24239
|
}
|
|
24299
|
-
.v-
|
|
24300
|
-
|
|
24240
|
+
.v-window--show-arrows-on-hover .v-window__right {
|
|
24241
|
+
transform: translateX(200%);
|
|
24301
24242
|
}
|
|
24302
|
-
.v-
|
|
24303
|
-
|
|
24243
|
+
.v-window--show-arrows-on-hover:hover .v-window__left,
|
|
24244
|
+
.v-window--show-arrows-on-hover:hover .v-window__right {
|
|
24245
|
+
transform: translateX(0);
|
|
24304
24246
|
}
|
|
24305
|
-
.v-
|
|
24306
|
-
|
|
24247
|
+
.v-window-x-transition-enter-active, .v-window-x-transition-leave-active, .v-window-x-reverse-transition-enter-active, .v-window-x-reverse-transition-leave-active, .v-window-y-transition-enter-active, .v-window-y-transition-leave-active, .v-window-y-reverse-transition-enter-active, .v-window-y-reverse-transition-leave-active {
|
|
24248
|
+
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
|
24307
24249
|
}
|
|
24308
|
-
|
|
24309
|
-
|
|
24310
|
-
|
|
24311
|
-
align-items: center;
|
|
24312
|
-
display: flex;
|
|
24313
|
-
flex: 0 0 auto;
|
|
24314
|
-
position: relative;
|
|
24315
|
-
transition: inherit;
|
|
24250
|
+
.v-window-x-transition-leave-from, .v-window-x-transition-leave-to, .v-window-x-reverse-transition-leave-from, .v-window-x-reverse-transition-leave-to, .v-window-y-transition-leave-from, .v-window-y-transition-leave-to, .v-window-y-reverse-transition-leave-from, .v-window-y-reverse-transition-leave-to {
|
|
24251
|
+
position: absolute !important;
|
|
24252
|
+
top: 0;
|
|
24316
24253
|
width: 100%;
|
|
24317
24254
|
}
|
|
24318
|
-
|
|
24319
|
-
|
|
24320
|
-
margin-inline-start: 10px;
|
|
24255
|
+
.v-window-x-transition-enter-from {
|
|
24256
|
+
transform: translateX(100%);
|
|
24321
24257
|
}
|
|
24322
|
-
.v-
|
|
24323
|
-
|
|
24258
|
+
.v-window-x-transition-leave-to {
|
|
24259
|
+
transform: translateX(-100%);
|
|
24324
24260
|
}
|
|
24325
|
-
.v-
|
|
24326
|
-
|
|
24261
|
+
.v-window-x-reverse-transition-enter-from {
|
|
24262
|
+
transform: translateX(-100%);
|
|
24327
24263
|
}
|
|
24328
|
-
.v-
|
|
24329
|
-
|
|
24264
|
+
.v-window-x-reverse-transition-leave-to {
|
|
24265
|
+
transform: translateX(100%);
|
|
24330
24266
|
}
|
|
24331
|
-
|
|
24332
|
-
|
|
24333
|
-
position: absolute;
|
|
24334
|
-
top: 0;
|
|
24335
|
-
left: 0;
|
|
24336
|
-
width: 100%;
|
|
24337
|
-
height: 100%;
|
|
24338
|
-
display: flex;
|
|
24339
|
-
opacity: var(--v-toolbar-image-opacity, 1);
|
|
24340
|
-
transition-property: opacity;
|
|
24267
|
+
.v-window-y-transition-enter-from {
|
|
24268
|
+
transform: translateY(100%);
|
|
24341
24269
|
}
|
|
24342
|
-
|
|
24343
|
-
|
|
24344
|
-
.v-toolbar__append {
|
|
24345
|
-
align-items: center;
|
|
24346
|
-
align-self: stretch;
|
|
24347
|
-
display: flex;
|
|
24270
|
+
.v-window-y-transition-leave-to {
|
|
24271
|
+
transform: translateY(-100%);
|
|
24348
24272
|
}
|
|
24349
|
-
|
|
24350
|
-
|
|
24351
|
-
margin-inline: 10px auto;
|
|
24352
|
-
}
|
|
24353
|
-
|
|
24354
|
-
.v-toolbar__append {
|
|
24355
|
-
margin-inline: auto 10px;
|
|
24356
|
-
}
|
|
24357
|
-
|
|
24358
|
-
.v-toolbar-title {
|
|
24359
|
-
flex: 1 1;
|
|
24360
|
-
font-size: 1.25rem;
|
|
24361
|
-
min-width: 0;
|
|
24362
|
-
font-size: 1.25rem;
|
|
24363
|
-
font-weight: 400;
|
|
24364
|
-
letter-spacing: 0;
|
|
24365
|
-
line-height: 1.75rem;
|
|
24366
|
-
text-transform: none;
|
|
24367
|
-
}
|
|
24368
|
-
.v-toolbar--density-prominent .v-toolbar-title {
|
|
24369
|
-
align-self: flex-end;
|
|
24370
|
-
padding-bottom: 6px;
|
|
24371
|
-
font-size: 1.5rem;
|
|
24372
|
-
font-weight: 400;
|
|
24373
|
-
letter-spacing: 0;
|
|
24374
|
-
line-height: 2.25rem;
|
|
24375
|
-
text-transform: none;
|
|
24376
|
-
}
|
|
24377
|
-
|
|
24378
|
-
.v-toolbar-title__placeholder {
|
|
24379
|
-
overflow: hidden;
|
|
24380
|
-
text-overflow: ellipsis;
|
|
24381
|
-
white-space: nowrap;
|
|
24382
|
-
}
|
|
24383
|
-
|
|
24384
|
-
.v-toolbar-items {
|
|
24385
|
-
display: flex;
|
|
24386
|
-
height: inherit;
|
|
24387
|
-
align-self: stretch;
|
|
24273
|
+
.v-window-y-reverse-transition-enter-from {
|
|
24274
|
+
transform: translateY(-100%);
|
|
24388
24275
|
}
|
|
24389
|
-
.v-
|
|
24390
|
-
|
|
24276
|
+
.v-window-y-reverse-transition-leave-to {
|
|
24277
|
+
transform: translateY(100%);
|
|
24391
24278
|
}.v-virtual-scroll {
|
|
24392
24279
|
display: block;
|
|
24393
24280
|
flex: 1 1 auto;
|
|
@@ -24397,125 +24284,188 @@ html.v-overlay-scroll-blocked {
|
|
|
24397
24284
|
}
|
|
24398
24285
|
.v-virtual-scroll__container {
|
|
24399
24286
|
display: block;
|
|
24400
|
-
}.v-
|
|
24287
|
+
}.v-carousel {
|
|
24401
24288
|
overflow: hidden;
|
|
24289
|
+
position: relative;
|
|
24290
|
+
width: 100%;
|
|
24402
24291
|
}
|
|
24403
|
-
.v-
|
|
24292
|
+
.v-carousel__controls {
|
|
24293
|
+
align-items: center;
|
|
24294
|
+
bottom: 0;
|
|
24404
24295
|
display: flex;
|
|
24405
|
-
|
|
24406
|
-
|
|
24407
|
-
|
|
24408
|
-
|
|
24296
|
+
height: 50px;
|
|
24297
|
+
justify-content: center;
|
|
24298
|
+
list-style-type: none;
|
|
24299
|
+
position: absolute;
|
|
24300
|
+
width: 100%;
|
|
24301
|
+
z-index: 1;
|
|
24302
|
+
background: rgba(var(--v-theme-surface-variant), 0.3);
|
|
24303
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
24409
24304
|
}
|
|
24410
|
-
.v-
|
|
24305
|
+
.v-carousel__controls > .v-item-group {
|
|
24306
|
+
flex: 0 1 auto;
|
|
24307
|
+
}
|
|
24308
|
+
.v-carousel__controls__item {
|
|
24309
|
+
margin: 0 8px;
|
|
24310
|
+
}
|
|
24311
|
+
.v-carousel__controls__item .v-icon {
|
|
24312
|
+
opacity: 0.5;
|
|
24313
|
+
}
|
|
24314
|
+
.v-carousel__controls__item--active .v-icon {
|
|
24315
|
+
opacity: 1;
|
|
24316
|
+
vertical-align: middle;
|
|
24317
|
+
}
|
|
24318
|
+
.v-carousel__controls__item:hover {
|
|
24319
|
+
background: none;
|
|
24320
|
+
}
|
|
24321
|
+
.v-carousel__controls__item:hover .v-icon {
|
|
24322
|
+
opacity: 0.8;
|
|
24323
|
+
}
|
|
24324
|
+
|
|
24325
|
+
.v-carousel__progress {
|
|
24326
|
+
margin: 0;
|
|
24411
24327
|
position: absolute;
|
|
24328
|
+
bottom: 0;
|
|
24412
24329
|
left: 0;
|
|
24413
|
-
|
|
24414
|
-
width: 100%;
|
|
24415
|
-
height: 100%;
|
|
24416
|
-
display: flex;
|
|
24417
|
-
align-items: center;
|
|
24418
|
-
justify-content: space-between;
|
|
24419
|
-
padding: 0 16px;
|
|
24420
|
-
pointer-events: none;
|
|
24330
|
+
right: 0;
|
|
24421
24331
|
}
|
|
24422
|
-
|
|
24423
|
-
|
|
24332
|
+
|
|
24333
|
+
.v-carousel-item {
|
|
24334
|
+
display: block;
|
|
24335
|
+
height: inherit;
|
|
24336
|
+
text-decoration: none;
|
|
24424
24337
|
}
|
|
24425
|
-
.v-
|
|
24426
|
-
|
|
24338
|
+
.v-carousel-item > .v-img {
|
|
24339
|
+
height: inherit;
|
|
24427
24340
|
}
|
|
24428
|
-
|
|
24429
|
-
|
|
24341
|
+
|
|
24342
|
+
.v-carousel--hide-delimiter-background .v-carousel__controls {
|
|
24343
|
+
background: transparent;
|
|
24430
24344
|
}
|
|
24431
|
-
|
|
24432
|
-
|
|
24345
|
+
|
|
24346
|
+
.v-carousel--vertical-delimiters .v-carousel__controls {
|
|
24347
|
+
flex-direction: column;
|
|
24348
|
+
height: 100% !important;
|
|
24349
|
+
width: 50px;
|
|
24350
|
+
}.v-snackbar {
|
|
24351
|
+
justify-content: center;
|
|
24352
|
+
z-index: 10000;
|
|
24353
|
+
margin: 8px;
|
|
24354
|
+
margin-inline-end: calc(8px + var(--v-scrollbar-offset));
|
|
24433
24355
|
}
|
|
24434
|
-
.v-
|
|
24435
|
-
|
|
24436
|
-
transform: translateX(0);
|
|
24356
|
+
.v-snackbar:not(.v-snackbar--centered):not(.v-snackbar--top) {
|
|
24357
|
+
align-items: flex-end;
|
|
24437
24358
|
}
|
|
24438
|
-
.v-
|
|
24439
|
-
|
|
24359
|
+
.v-snackbar__wrapper {
|
|
24360
|
+
align-items: center;
|
|
24361
|
+
display: flex;
|
|
24362
|
+
max-width: 672px;
|
|
24363
|
+
min-height: 48px;
|
|
24364
|
+
min-width: 344px;
|
|
24365
|
+
overflow: hidden;
|
|
24366
|
+
padding: 0;
|
|
24367
|
+
border-radius: 4px;
|
|
24440
24368
|
}
|
|
24441
|
-
.v-
|
|
24442
|
-
|
|
24443
|
-
|
|
24444
|
-
width: 100%;
|
|
24369
|
+
.v-snackbar--variant-plain, .v-snackbar--variant-outlined, .v-snackbar--variant-text, .v-snackbar--variant-tonal {
|
|
24370
|
+
background: transparent;
|
|
24371
|
+
color: inherit;
|
|
24445
24372
|
}
|
|
24446
|
-
.v-
|
|
24447
|
-
|
|
24373
|
+
.v-snackbar--variant-plain {
|
|
24374
|
+
opacity: 0.62;
|
|
24448
24375
|
}
|
|
24449
|
-
.v-
|
|
24450
|
-
|
|
24376
|
+
.v-snackbar--variant-plain:focus, .v-snackbar--variant-plain:hover {
|
|
24377
|
+
opacity: 1;
|
|
24451
24378
|
}
|
|
24452
|
-
.v-
|
|
24453
|
-
|
|
24379
|
+
.v-snackbar--variant-plain .v-snackbar__overlay {
|
|
24380
|
+
display: none;
|
|
24454
24381
|
}
|
|
24455
|
-
.v-
|
|
24456
|
-
|
|
24382
|
+
.v-snackbar--variant-elevated, .v-snackbar--variant-flat {
|
|
24383
|
+
background: rgb(var(--v-theme-surface-variant));
|
|
24384
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
24457
24385
|
}
|
|
24458
|
-
.v-
|
|
24459
|
-
|
|
24386
|
+
.v-snackbar--variant-elevated {
|
|
24387
|
+
box-shadow: 0px 3px 5px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 6px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 18px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
24460
24388
|
}
|
|
24461
|
-
.v-
|
|
24462
|
-
|
|
24389
|
+
.v-snackbar--variant-flat {
|
|
24390
|
+
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
24463
24391
|
}
|
|
24464
|
-
.v-
|
|
24465
|
-
|
|
24392
|
+
.v-snackbar--variant-outlined {
|
|
24393
|
+
border: thin solid currentColor;
|
|
24466
24394
|
}
|
|
24467
|
-
.v-
|
|
24468
|
-
|
|
24469
|
-
}.v-color-picker-canvas {
|
|
24470
|
-
display: flex;
|
|
24471
|
-
position: relative;
|
|
24472
|
-
overflow: hidden;
|
|
24473
|
-
contain: content;
|
|
24474
|
-
touch-action: none;
|
|
24395
|
+
.v-snackbar--variant-text .v-snackbar__overlay {
|
|
24396
|
+
background: currentColor;
|
|
24475
24397
|
}
|
|
24476
|
-
.v-
|
|
24398
|
+
.v-snackbar--variant-tonal .v-snackbar__underlay {
|
|
24399
|
+
background: currentColor;
|
|
24400
|
+
opacity: var(--v-activated-opacity);
|
|
24401
|
+
border-radius: inherit;
|
|
24477
24402
|
position: absolute;
|
|
24478
24403
|
top: 0;
|
|
24404
|
+
right: 0;
|
|
24405
|
+
bottom: 0;
|
|
24479
24406
|
left: 0;
|
|
24480
|
-
|
|
24481
|
-
height: 15px;
|
|
24482
|
-
background: transparent;
|
|
24483
|
-
border-radius: 50%;
|
|
24484
|
-
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
24407
|
+
pointer-events: none;
|
|
24485
24408
|
}
|
|
24486
|
-
|
|
24487
|
-
|
|
24409
|
+
|
|
24410
|
+
.v-snackbar__content {
|
|
24411
|
+
flex-grow: 1;
|
|
24412
|
+
font-size: 0.875rem;
|
|
24413
|
+
font-weight: 400;
|
|
24414
|
+
letter-spacing: 0.0178571429em;
|
|
24415
|
+
line-height: 1.25rem;
|
|
24416
|
+
margin-right: auto;
|
|
24417
|
+
padding: 14px 16px;
|
|
24418
|
+
text-align: initial;
|
|
24488
24419
|
}
|
|
24489
|
-
.v-
|
|
24490
|
-
|
|
24491
|
-
|
|
24420
|
+
.v-snackbar__actions {
|
|
24421
|
+
align-items: center;
|
|
24422
|
+
align-self: center;
|
|
24492
24423
|
display: flex;
|
|
24493
|
-
margin-
|
|
24424
|
+
margin-inline-end: 8px;
|
|
24494
24425
|
}
|
|
24495
|
-
|
|
24496
|
-
|
|
24426
|
+
.v-snackbar__actions > .v-btn {
|
|
24427
|
+
padding: 0 8px;
|
|
24428
|
+
min-width: auto;
|
|
24429
|
+
}
|
|
24430
|
+
.v-snackbar__timer {
|
|
24497
24431
|
width: 100%;
|
|
24498
|
-
|
|
24499
|
-
|
|
24500
|
-
justify-content: center;
|
|
24501
|
-
text-align: center;
|
|
24432
|
+
position: absolute;
|
|
24433
|
+
top: 0;
|
|
24502
24434
|
}
|
|
24503
|
-
.v-
|
|
24504
|
-
|
|
24435
|
+
.v-snackbar__timer .v-progress-linear {
|
|
24436
|
+
transition: 0.2s linear;
|
|
24505
24437
|
}
|
|
24506
|
-
.v-
|
|
24507
|
-
|
|
24438
|
+
.v-snackbar--absolute {
|
|
24439
|
+
position: absolute;
|
|
24440
|
+
z-index: 1;
|
|
24441
|
+
}
|
|
24442
|
+
.v-snackbar--multi-line .v-snackbar__wrapper {
|
|
24443
|
+
min-height: 68px;
|
|
24444
|
+
}
|
|
24445
|
+
.v-snackbar--vertical .v-snackbar__wrapper {
|
|
24446
|
+
flex-direction: column;
|
|
24447
|
+
}
|
|
24448
|
+
.v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions {
|
|
24449
|
+
align-self: flex-end;
|
|
24508
24450
|
margin-bottom: 8px;
|
|
24509
|
-
min-width: 0;
|
|
24510
|
-
outline: none;
|
|
24511
|
-
text-align: center;
|
|
24512
|
-
width: 100%;
|
|
24513
|
-
height: 32px;
|
|
24514
|
-
background: rgba(var(--v-theme-surface-variant), 0.2);
|
|
24515
|
-
color: rgba(var(--v-theme-on-surface));
|
|
24516
24451
|
}
|
|
24517
|
-
|
|
24518
|
-
|
|
24452
|
+
|
|
24453
|
+
.v-snackbar-transition-enter-active, .v-snackbar-transition-leave-active {
|
|
24454
|
+
transition-duration: 0.15s;
|
|
24455
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
24456
|
+
}
|
|
24457
|
+
.v-snackbar-transition-enter-active {
|
|
24458
|
+
transition-property: opacity, transform;
|
|
24459
|
+
}
|
|
24460
|
+
.v-snackbar-transition-enter-from {
|
|
24461
|
+
opacity: 0;
|
|
24462
|
+
transform: scale(0.8);
|
|
24463
|
+
}
|
|
24464
|
+
.v-snackbar-transition-leave-active {
|
|
24465
|
+
transition-property: opacity;
|
|
24466
|
+
}
|
|
24467
|
+
.v-snackbar-transition-leave-to {
|
|
24468
|
+
opacity: 0;
|
|
24519
24469
|
}.v-color-picker-preview__alpha .v-slider-track__background {
|
|
24520
24470
|
background-color: transparent !important;
|
|
24521
24471
|
}
|
|
@@ -24585,6 +24535,56 @@ html.v-overlay-scroll-blocked {
|
|
|
24585
24535
|
.v-color-picker-preview__eye-dropper {
|
|
24586
24536
|
position: relative;
|
|
24587
24537
|
margin-right: 12px;
|
|
24538
|
+
}.v-color-picker-edit {
|
|
24539
|
+
display: flex;
|
|
24540
|
+
margin-top: 24px;
|
|
24541
|
+
}
|
|
24542
|
+
|
|
24543
|
+
.v-color-picker-edit__input {
|
|
24544
|
+
width: 100%;
|
|
24545
|
+
display: flex;
|
|
24546
|
+
flex-wrap: wrap;
|
|
24547
|
+
justify-content: center;
|
|
24548
|
+
text-align: center;
|
|
24549
|
+
}
|
|
24550
|
+
.v-color-picker-edit__input:not(:last-child) {
|
|
24551
|
+
margin-inline-end: 8px;
|
|
24552
|
+
}
|
|
24553
|
+
.v-color-picker-edit__input input {
|
|
24554
|
+
border-radius: 4px;
|
|
24555
|
+
margin-bottom: 8px;
|
|
24556
|
+
min-width: 0;
|
|
24557
|
+
outline: none;
|
|
24558
|
+
text-align: center;
|
|
24559
|
+
width: 100%;
|
|
24560
|
+
height: 32px;
|
|
24561
|
+
background: rgba(var(--v-theme-surface-variant), 0.2);
|
|
24562
|
+
color: rgba(var(--v-theme-on-surface));
|
|
24563
|
+
}
|
|
24564
|
+
.v-color-picker-edit__input span {
|
|
24565
|
+
font-size: 0.75rem;
|
|
24566
|
+
}.v-color-picker-canvas {
|
|
24567
|
+
display: flex;
|
|
24568
|
+
position: relative;
|
|
24569
|
+
overflow: hidden;
|
|
24570
|
+
contain: content;
|
|
24571
|
+
touch-action: none;
|
|
24572
|
+
}
|
|
24573
|
+
.v-color-picker-canvas__dot {
|
|
24574
|
+
position: absolute;
|
|
24575
|
+
top: 0;
|
|
24576
|
+
left: 0;
|
|
24577
|
+
width: 15px;
|
|
24578
|
+
height: 15px;
|
|
24579
|
+
background: transparent;
|
|
24580
|
+
border-radius: 50%;
|
|
24581
|
+
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
24582
|
+
}
|
|
24583
|
+
.v-color-picker-canvas__dot--disabled {
|
|
24584
|
+
box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
24585
|
+
}
|
|
24586
|
+
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
|
24587
|
+
will-change: transform;
|
|
24588
24588
|
}.v-color-picker-swatches {
|
|
24589
24589
|
overflow-y: auto;
|
|
24590
24590
|
}
|