vuetify 3.5.5 → 3.5.6
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 +40 -0
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +132 -128
- package/dist/json/tags.json +15 -0
- package/dist/json/web-types.json +292 -1
- package/dist/vuetify-labs.css +1632 -1635
- package/dist/vuetify-labs.d.ts +242 -1
- package/dist/vuetify-labs.esm.js +24 -13
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +24 -13
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +711 -714
- package/dist/vuetify.d.ts +281 -39
- package/dist/vuetify.esm.js +24 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +24 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +22 -21
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +7 -4
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +3 -1
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +214 -1
- package/lib/components/VDataTable/index.mjs +1 -0
- package/lib/components/VDataTable/index.mjs.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanel.css +4 -7
- package/lib/components/VExpansionPanel/VExpansionPanel.sass +4 -3
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +2 -0
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs +2 -0
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
- package/lib/components/VExpansionPanel/index.d.mts +27 -0
- package/lib/components/VSelect/VSelect.mjs +4 -3
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/index.d.mts +241 -1
- package/lib/composables/filter.mjs +1 -1
- package/lib/composables/filter.mjs.map +1 -1
- package/lib/composables/goto.mjs +2 -2
- package/lib/composables/goto.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +39 -38
- package/package.json +2 -2
package/dist/vuetify.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.5.
|
|
2
|
+
* Vuetify v3.5.6
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -17029,34 +17029,6 @@ html.overflow-y-hidden {
|
|
|
17029
17029
|
.v-ripple__animation--out {
|
|
17030
17030
|
transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
|
|
17031
17031
|
opacity: 0;
|
|
17032
|
-
}.v-application {
|
|
17033
|
-
display: flex;
|
|
17034
|
-
background: rgb(var(--v-theme-background));
|
|
17035
|
-
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
17036
|
-
}
|
|
17037
|
-
|
|
17038
|
-
.v-application__wrap {
|
|
17039
|
-
-webkit-backface-visibility: hidden;
|
|
17040
|
-
backface-visibility: hidden;
|
|
17041
|
-
display: flex;
|
|
17042
|
-
flex-direction: column;
|
|
17043
|
-
flex: 1 1 auto;
|
|
17044
|
-
max-width: 100%;
|
|
17045
|
-
min-height: 100vh;
|
|
17046
|
-
min-height: 100dvh;
|
|
17047
|
-
position: relative;
|
|
17048
|
-
}.v-app-bar {
|
|
17049
|
-
display: flex;
|
|
17050
|
-
}
|
|
17051
|
-
.v-app-bar.v-toolbar {
|
|
17052
|
-
background: rgb(var(--v-theme-surface));
|
|
17053
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
17054
|
-
}
|
|
17055
|
-
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
|
|
17056
|
-
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));
|
|
17057
|
-
}
|
|
17058
|
-
.v-app-bar:not(.v-toolbar--absolute) {
|
|
17059
|
-
padding-inline-end: var(--v-scrollbar-offset);
|
|
17060
17032
|
}.v-alert {
|
|
17061
17033
|
display: grid;
|
|
17062
17034
|
flex: 1 1;
|
|
@@ -17267,6 +17239,99 @@ html.overflow-y-hidden {
|
|
|
17267
17239
|
text-transform: none;
|
|
17268
17240
|
word-break: normal;
|
|
17269
17241
|
word-wrap: break-word;
|
|
17242
|
+
}.v-app-bar {
|
|
17243
|
+
display: flex;
|
|
17244
|
+
}
|
|
17245
|
+
.v-app-bar.v-toolbar {
|
|
17246
|
+
background: rgb(var(--v-theme-surface));
|
|
17247
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
17248
|
+
}
|
|
17249
|
+
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
|
|
17250
|
+
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));
|
|
17251
|
+
}
|
|
17252
|
+
.v-app-bar:not(.v-toolbar--absolute) {
|
|
17253
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
|
17254
|
+
}.v-autocomplete .v-field .v-text-field__prefix,
|
|
17255
|
+
.v-autocomplete .v-field .v-text-field__suffix,
|
|
17256
|
+
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
|
17257
|
+
cursor: text;
|
|
17258
|
+
}
|
|
17259
|
+
.v-autocomplete .v-field .v-field__input > input {
|
|
17260
|
+
flex: 1 1;
|
|
17261
|
+
}
|
|
17262
|
+
.v-autocomplete .v-field input {
|
|
17263
|
+
min-width: 64px;
|
|
17264
|
+
}
|
|
17265
|
+
.v-autocomplete .v-field:not(.v-field--focused) input {
|
|
17266
|
+
min-width: 0;
|
|
17267
|
+
}
|
|
17268
|
+
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
|
17269
|
+
margin-inline-end: 2px;
|
|
17270
|
+
}
|
|
17271
|
+
.v-autocomplete .v-autocomplete__selection-text {
|
|
17272
|
+
overflow: hidden;
|
|
17273
|
+
text-overflow: ellipsis;
|
|
17274
|
+
white-space: nowrap;
|
|
17275
|
+
}
|
|
17276
|
+
|
|
17277
|
+
.v-autocomplete__content {
|
|
17278
|
+
overflow: hidden;
|
|
17279
|
+
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));
|
|
17280
|
+
border-radius: 4px;
|
|
17281
|
+
}
|
|
17282
|
+
.v-autocomplete__mask {
|
|
17283
|
+
background: rgb(var(--v-theme-surface-light));
|
|
17284
|
+
}
|
|
17285
|
+
.v-autocomplete__selection {
|
|
17286
|
+
display: inline-flex;
|
|
17287
|
+
align-items: center;
|
|
17288
|
+
height: 1.5rem;
|
|
17289
|
+
letter-spacing: inherit;
|
|
17290
|
+
line-height: inherit;
|
|
17291
|
+
max-width: calc(100% - 2px - 2px);
|
|
17292
|
+
}
|
|
17293
|
+
.v-autocomplete__selection:first-child {
|
|
17294
|
+
margin-inline-start: 0;
|
|
17295
|
+
}
|
|
17296
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
17297
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
17298
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
17299
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
17300
|
+
top: 0px;
|
|
17301
|
+
}
|
|
17302
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
|
17303
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
17304
|
+
}
|
|
17305
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
|
17306
|
+
opacity: 1;
|
|
17307
|
+
}
|
|
17308
|
+
.v-autocomplete--selecting-index .v-field__input > input {
|
|
17309
|
+
caret-color: transparent;
|
|
17310
|
+
}
|
|
17311
|
+
.v-autocomplete--single.v-text-field .v-field--focused input {
|
|
17312
|
+
flex: 1 1;
|
|
17313
|
+
position: absolute;
|
|
17314
|
+
left: 0;
|
|
17315
|
+
right: 0;
|
|
17316
|
+
width: 100%;
|
|
17317
|
+
padding-inline: inherit;
|
|
17318
|
+
}
|
|
17319
|
+
.v-autocomplete--single .v-field--active input {
|
|
17320
|
+
transition: none;
|
|
17321
|
+
}
|
|
17322
|
+
.v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
|
|
17323
|
+
opacity: 0;
|
|
17324
|
+
}
|
|
17325
|
+
.v-autocomplete--single .v-field--focused .v-autocomplete__selection {
|
|
17326
|
+
opacity: 0;
|
|
17327
|
+
}
|
|
17328
|
+
.v-autocomplete__menu-icon {
|
|
17329
|
+
margin-inline-start: 4px;
|
|
17330
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
17331
|
+
}
|
|
17332
|
+
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
|
17333
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
17334
|
+
transform: rotate(180deg);
|
|
17270
17335
|
}.v-avatar {
|
|
17271
17336
|
flex: none;
|
|
17272
17337
|
align-items: center;
|
|
@@ -17354,77 +17419,6 @@ html.overflow-y-hidden {
|
|
|
17354
17419
|
.v-avatar .v-img {
|
|
17355
17420
|
height: 100%;
|
|
17356
17421
|
width: 100%;
|
|
17357
|
-
}.v-badge {
|
|
17358
|
-
display: inline-block;
|
|
17359
|
-
line-height: 1;
|
|
17360
|
-
}
|
|
17361
|
-
|
|
17362
|
-
.v-badge__badge {
|
|
17363
|
-
align-items: center;
|
|
17364
|
-
display: inline-flex;
|
|
17365
|
-
border-radius: 10px;
|
|
17366
|
-
font-size: 0.75rem;
|
|
17367
|
-
font-weight: 500;
|
|
17368
|
-
height: 1.25rem;
|
|
17369
|
-
justify-content: center;
|
|
17370
|
-
min-width: 20px;
|
|
17371
|
-
padding: 4px 6px;
|
|
17372
|
-
pointer-events: auto;
|
|
17373
|
-
position: absolute;
|
|
17374
|
-
text-align: center;
|
|
17375
|
-
text-indent: 0;
|
|
17376
|
-
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
|
17377
|
-
white-space: nowrap;
|
|
17378
|
-
background: rgb(var(--v-theme-surface-variant));
|
|
17379
|
-
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
|
17380
|
-
}
|
|
17381
|
-
.v-badge--bordered .v-badge__badge::after {
|
|
17382
|
-
border-radius: inherit;
|
|
17383
|
-
border-style: solid;
|
|
17384
|
-
border-width: 2px;
|
|
17385
|
-
bottom: 0;
|
|
17386
|
-
color: rgb(var(--v-theme-background));
|
|
17387
|
-
content: "";
|
|
17388
|
-
left: 0;
|
|
17389
|
-
position: absolute;
|
|
17390
|
-
right: 0;
|
|
17391
|
-
top: 0;
|
|
17392
|
-
transform: scale(1.05);
|
|
17393
|
-
}
|
|
17394
|
-
.v-badge--dot .v-badge__badge {
|
|
17395
|
-
border-radius: 4.5px;
|
|
17396
|
-
height: 9px;
|
|
17397
|
-
min-width: 0;
|
|
17398
|
-
padding: 0;
|
|
17399
|
-
width: 9px;
|
|
17400
|
-
}
|
|
17401
|
-
.v-badge--dot .v-badge__badge::after {
|
|
17402
|
-
border-width: 1.5px;
|
|
17403
|
-
}
|
|
17404
|
-
.v-badge--inline .v-badge__badge {
|
|
17405
|
-
position: relative;
|
|
17406
|
-
vertical-align: middle;
|
|
17407
|
-
}
|
|
17408
|
-
.v-badge__badge .v-icon {
|
|
17409
|
-
color: inherit;
|
|
17410
|
-
font-size: 0.75rem;
|
|
17411
|
-
margin: 0 -2px;
|
|
17412
|
-
}
|
|
17413
|
-
.v-badge__badge img,
|
|
17414
|
-
.v-badge__badge .v-img {
|
|
17415
|
-
height: 100%;
|
|
17416
|
-
width: 100%;
|
|
17417
|
-
}
|
|
17418
|
-
|
|
17419
|
-
.v-badge__wrapper {
|
|
17420
|
-
display: flex;
|
|
17421
|
-
position: relative;
|
|
17422
|
-
}
|
|
17423
|
-
.v-badge--inline .v-badge__wrapper {
|
|
17424
|
-
align-items: center;
|
|
17425
|
-
display: inline-flex;
|
|
17426
|
-
justify-content: center;
|
|
17427
|
-
margin: 0 4px;
|
|
17428
17422
|
}.v-banner {
|
|
17429
17423
|
display: grid;
|
|
17430
17424
|
flex: 1 1;
|
|
@@ -17582,6 +17576,132 @@ html.overflow-y-hidden {
|
|
|
17582
17576
|
}
|
|
17583
17577
|
.v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
|
|
17584
17578
|
align-self: flex-start;
|
|
17579
|
+
}.v-badge {
|
|
17580
|
+
display: inline-block;
|
|
17581
|
+
line-height: 1;
|
|
17582
|
+
}
|
|
17583
|
+
|
|
17584
|
+
.v-badge__badge {
|
|
17585
|
+
align-items: center;
|
|
17586
|
+
display: inline-flex;
|
|
17587
|
+
border-radius: 10px;
|
|
17588
|
+
font-size: 0.75rem;
|
|
17589
|
+
font-weight: 500;
|
|
17590
|
+
height: 1.25rem;
|
|
17591
|
+
justify-content: center;
|
|
17592
|
+
min-width: 20px;
|
|
17593
|
+
padding: 4px 6px;
|
|
17594
|
+
pointer-events: auto;
|
|
17595
|
+
position: absolute;
|
|
17596
|
+
text-align: center;
|
|
17597
|
+
text-indent: 0;
|
|
17598
|
+
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
|
17599
|
+
white-space: nowrap;
|
|
17600
|
+
background: rgb(var(--v-theme-surface-variant));
|
|
17601
|
+
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
|
17602
|
+
}
|
|
17603
|
+
.v-badge--bordered .v-badge__badge::after {
|
|
17604
|
+
border-radius: inherit;
|
|
17605
|
+
border-style: solid;
|
|
17606
|
+
border-width: 2px;
|
|
17607
|
+
bottom: 0;
|
|
17608
|
+
color: rgb(var(--v-theme-background));
|
|
17609
|
+
content: "";
|
|
17610
|
+
left: 0;
|
|
17611
|
+
position: absolute;
|
|
17612
|
+
right: 0;
|
|
17613
|
+
top: 0;
|
|
17614
|
+
transform: scale(1.05);
|
|
17615
|
+
}
|
|
17616
|
+
.v-badge--dot .v-badge__badge {
|
|
17617
|
+
border-radius: 4.5px;
|
|
17618
|
+
height: 9px;
|
|
17619
|
+
min-width: 0;
|
|
17620
|
+
padding: 0;
|
|
17621
|
+
width: 9px;
|
|
17622
|
+
}
|
|
17623
|
+
.v-badge--dot .v-badge__badge::after {
|
|
17624
|
+
border-width: 1.5px;
|
|
17625
|
+
}
|
|
17626
|
+
.v-badge--inline .v-badge__badge {
|
|
17627
|
+
position: relative;
|
|
17628
|
+
vertical-align: middle;
|
|
17629
|
+
}
|
|
17630
|
+
.v-badge__badge .v-icon {
|
|
17631
|
+
color: inherit;
|
|
17632
|
+
font-size: 0.75rem;
|
|
17633
|
+
margin: 0 -2px;
|
|
17634
|
+
}
|
|
17635
|
+
.v-badge__badge img,
|
|
17636
|
+
.v-badge__badge .v-img {
|
|
17637
|
+
height: 100%;
|
|
17638
|
+
width: 100%;
|
|
17639
|
+
}
|
|
17640
|
+
|
|
17641
|
+
.v-badge__wrapper {
|
|
17642
|
+
display: flex;
|
|
17643
|
+
position: relative;
|
|
17644
|
+
}
|
|
17645
|
+
.v-badge--inline .v-badge__wrapper {
|
|
17646
|
+
align-items: center;
|
|
17647
|
+
display: inline-flex;
|
|
17648
|
+
justify-content: center;
|
|
17649
|
+
margin: 0 4px;
|
|
17650
|
+
}.v-bottom-navigation {
|
|
17651
|
+
display: flex;
|
|
17652
|
+
max-width: 100%;
|
|
17653
|
+
overflow: hidden;
|
|
17654
|
+
position: absolute;
|
|
17655
|
+
transition: transform, color 0.2s, 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
17656
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
17657
|
+
border-style: solid;
|
|
17658
|
+
border-width: 0;
|
|
17659
|
+
border-radius: 0;
|
|
17660
|
+
background: rgb(var(--v-theme-surface));
|
|
17661
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
17662
|
+
}
|
|
17663
|
+
.v-bottom-navigation--border {
|
|
17664
|
+
border-width: thin;
|
|
17665
|
+
box-shadow: none;
|
|
17666
|
+
}
|
|
17667
|
+
.v-bottom-navigation--active {
|
|
17668
|
+
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));
|
|
17669
|
+
}
|
|
17670
|
+
|
|
17671
|
+
.v-bottom-navigation__content {
|
|
17672
|
+
display: flex;
|
|
17673
|
+
flex: none;
|
|
17674
|
+
font-size: 0.75rem;
|
|
17675
|
+
justify-content: center;
|
|
17676
|
+
transition: inherit;
|
|
17677
|
+
width: 100%;
|
|
17678
|
+
}
|
|
17679
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
|
17680
|
+
font-size: inherit;
|
|
17681
|
+
height: 100%;
|
|
17682
|
+
max-width: 168px;
|
|
17683
|
+
min-width: 80px;
|
|
17684
|
+
text-transform: none;
|
|
17685
|
+
transition: inherit;
|
|
17686
|
+
width: auto;
|
|
17687
|
+
border-radius: 0;
|
|
17688
|
+
}
|
|
17689
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
|
|
17690
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
|
17691
|
+
transition: inherit;
|
|
17692
|
+
}
|
|
17693
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
|
17694
|
+
font-size: 1.5rem;
|
|
17695
|
+
}
|
|
17696
|
+
.v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
|
|
17697
|
+
flex-grow: 1;
|
|
17698
|
+
}
|
|
17699
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
|
|
17700
|
+
transition: inherit;
|
|
17701
|
+
opacity: 0;
|
|
17702
|
+
}
|
|
17703
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
|
17704
|
+
transform: translateY(0.5rem);
|
|
17585
17705
|
}.bottom-sheet-transition-enter-from {
|
|
17586
17706
|
transform: translateY(100%);
|
|
17587
17707
|
}
|
|
@@ -17646,86 +17766,31 @@ html.overflow-y-hidden {
|
|
|
17646
17766
|
.v-breadcrumbs-item {
|
|
17647
17767
|
align-items: center;
|
|
17648
17768
|
color: inherit;
|
|
17649
|
-
display: inline-flex;
|
|
17650
|
-
padding: 0 4px;
|
|
17651
|
-
text-decoration: none;
|
|
17652
|
-
vertical-align: middle;
|
|
17653
|
-
}
|
|
17654
|
-
.v-breadcrumbs-item--disabled {
|
|
17655
|
-
opacity: var(--v-disabled-opacity);
|
|
17656
|
-
pointer-events: none;
|
|
17657
|
-
}
|
|
17658
|
-
.v-breadcrumbs-item--link {
|
|
17659
|
-
color: inherit;
|
|
17660
|
-
text-decoration: none;
|
|
17661
|
-
}
|
|
17662
|
-
.v-breadcrumbs-item--link:hover {
|
|
17663
|
-
text-decoration: underline;
|
|
17664
|
-
}
|
|
17665
|
-
.v-breadcrumbs-item .v-icon {
|
|
17666
|
-
font-size: 1rem;
|
|
17667
|
-
margin-inline: -4px 2px;
|
|
17668
|
-
}
|
|
17669
|
-
|
|
17670
|
-
.v-breadcrumbs-divider {
|
|
17671
|
-
display: inline-block;
|
|
17672
|
-
padding: 0 8px;
|
|
17673
|
-
vertical-align: middle;
|
|
17674
|
-
}.v-bottom-navigation {
|
|
17675
|
-
display: flex;
|
|
17676
|
-
max-width: 100%;
|
|
17677
|
-
overflow: hidden;
|
|
17678
|
-
position: absolute;
|
|
17679
|
-
transition: transform, color 0.2s, 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
17680
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
17681
|
-
border-style: solid;
|
|
17682
|
-
border-width: 0;
|
|
17683
|
-
border-radius: 0;
|
|
17684
|
-
background: rgb(var(--v-theme-surface));
|
|
17685
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
17686
|
-
}
|
|
17687
|
-
.v-bottom-navigation--border {
|
|
17688
|
-
border-width: thin;
|
|
17689
|
-
box-shadow: none;
|
|
17690
|
-
}
|
|
17691
|
-
.v-bottom-navigation--active {
|
|
17692
|
-
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));
|
|
17693
|
-
}
|
|
17694
|
-
|
|
17695
|
-
.v-bottom-navigation__content {
|
|
17696
|
-
display: flex;
|
|
17697
|
-
flex: none;
|
|
17698
|
-
font-size: 0.75rem;
|
|
17699
|
-
justify-content: center;
|
|
17700
|
-
transition: inherit;
|
|
17701
|
-
width: 100%;
|
|
17702
|
-
}
|
|
17703
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
|
17704
|
-
font-size: inherit;
|
|
17705
|
-
height: 100%;
|
|
17706
|
-
max-width: 168px;
|
|
17707
|
-
min-width: 80px;
|
|
17708
|
-
text-transform: none;
|
|
17709
|
-
transition: inherit;
|
|
17710
|
-
width: auto;
|
|
17711
|
-
border-radius: 0;
|
|
17769
|
+
display: inline-flex;
|
|
17770
|
+
padding: 0 4px;
|
|
17771
|
+
text-decoration: none;
|
|
17772
|
+
vertical-align: middle;
|
|
17712
17773
|
}
|
|
17713
|
-
.v-
|
|
17714
|
-
|
|
17715
|
-
|
|
17774
|
+
.v-breadcrumbs-item--disabled {
|
|
17775
|
+
opacity: var(--v-disabled-opacity);
|
|
17776
|
+
pointer-events: none;
|
|
17716
17777
|
}
|
|
17717
|
-
.v-
|
|
17718
|
-
|
|
17778
|
+
.v-breadcrumbs-item--link {
|
|
17779
|
+
color: inherit;
|
|
17780
|
+
text-decoration: none;
|
|
17719
17781
|
}
|
|
17720
|
-
.v-
|
|
17721
|
-
|
|
17782
|
+
.v-breadcrumbs-item--link:hover {
|
|
17783
|
+
text-decoration: underline;
|
|
17722
17784
|
}
|
|
17723
|
-
.v-
|
|
17724
|
-
|
|
17725
|
-
|
|
17785
|
+
.v-breadcrumbs-item .v-icon {
|
|
17786
|
+
font-size: 1rem;
|
|
17787
|
+
margin-inline: -4px 2px;
|
|
17726
17788
|
}
|
|
17727
|
-
|
|
17728
|
-
|
|
17789
|
+
|
|
17790
|
+
.v-breadcrumbs-divider {
|
|
17791
|
+
display: inline-block;
|
|
17792
|
+
padding: 0 8px;
|
|
17793
|
+
vertical-align: middle;
|
|
17729
17794
|
}.v-btn {
|
|
17730
17795
|
align-items: center;
|
|
17731
17796
|
border-radius: 4px;
|
|
@@ -18185,6 +18250,19 @@ html.overflow-y-hidden {
|
|
|
18185
18250
|
}
|
|
18186
18251
|
.v-btn-group--tile {
|
|
18187
18252
|
border-radius: 0;
|
|
18253
|
+
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
|
18254
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
18255
|
+
}
|
|
18256
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
|
18257
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18258
|
+
}
|
|
18259
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
|
18260
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18261
|
+
}
|
|
18262
|
+
@supports not selector(:focus-visible) {
|
|
18263
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
|
18264
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18265
|
+
}
|
|
18188
18266
|
}.v-card {
|
|
18189
18267
|
display: block;
|
|
18190
18268
|
overflow: hidden;
|
|
@@ -18481,19 +18559,6 @@ html.overflow-y-hidden {
|
|
|
18481
18559
|
pointer-events: none;
|
|
18482
18560
|
opacity: 0;
|
|
18483
18561
|
transition: opacity 0.2s ease-in-out;
|
|
18484
|
-
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
|
18485
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
18486
|
-
}
|
|
18487
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
|
18488
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18489
|
-
}
|
|
18490
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
|
18491
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18492
|
-
}
|
|
18493
|
-
@supports not selector(:focus-visible) {
|
|
18494
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
|
18495
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18496
|
-
}
|
|
18497
18562
|
}.v-carousel {
|
|
18498
18563
|
overflow: hidden;
|
|
18499
18564
|
position: relative;
|
|
@@ -19765,6 +19830,22 @@ html.overflow-y-hidden {
|
|
|
19765
19830
|
flex: 0 1 auto;
|
|
19766
19831
|
font-size: 12px;
|
|
19767
19832
|
transition-duration: 150ms;
|
|
19833
|
+
}.v-application {
|
|
19834
|
+
display: flex;
|
|
19835
|
+
background: rgb(var(--v-theme-background));
|
|
19836
|
+
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
19837
|
+
}
|
|
19838
|
+
|
|
19839
|
+
.v-application__wrap {
|
|
19840
|
+
-webkit-backface-visibility: hidden;
|
|
19841
|
+
backface-visibility: hidden;
|
|
19842
|
+
display: flex;
|
|
19843
|
+
flex-direction: column;
|
|
19844
|
+
flex: 1 1 auto;
|
|
19845
|
+
max-width: 100%;
|
|
19846
|
+
min-height: 100vh;
|
|
19847
|
+
min-height: 100dvh;
|
|
19848
|
+
position: relative;
|
|
19768
19849
|
}.v-data-table {
|
|
19769
19850
|
width: 100%;
|
|
19770
19851
|
}
|
|
@@ -19933,87 +20014,6 @@ html.overflow-y-hidden {
|
|
|
19933
20014
|
|
|
19934
20015
|
.v-data-table-footer__page {
|
|
19935
20016
|
padding: 0 8px;
|
|
19936
|
-
}.v-autocomplete .v-field .v-text-field__prefix,
|
|
19937
|
-
.v-autocomplete .v-field .v-text-field__suffix,
|
|
19938
|
-
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
|
19939
|
-
cursor: text;
|
|
19940
|
-
}
|
|
19941
|
-
.v-autocomplete .v-field .v-field__input > input {
|
|
19942
|
-
flex: 1 1;
|
|
19943
|
-
}
|
|
19944
|
-
.v-autocomplete .v-field input {
|
|
19945
|
-
min-width: 64px;
|
|
19946
|
-
}
|
|
19947
|
-
.v-autocomplete .v-field:not(.v-field--focused) input {
|
|
19948
|
-
min-width: 0;
|
|
19949
|
-
}
|
|
19950
|
-
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
|
19951
|
-
margin-inline-end: 2px;
|
|
19952
|
-
}
|
|
19953
|
-
.v-autocomplete .v-autocomplete__selection-text {
|
|
19954
|
-
overflow: hidden;
|
|
19955
|
-
text-overflow: ellipsis;
|
|
19956
|
-
white-space: nowrap;
|
|
19957
|
-
}
|
|
19958
|
-
|
|
19959
|
-
.v-autocomplete__content {
|
|
19960
|
-
overflow: hidden;
|
|
19961
|
-
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));
|
|
19962
|
-
border-radius: 4px;
|
|
19963
|
-
}
|
|
19964
|
-
.v-autocomplete__mask {
|
|
19965
|
-
background: rgb(var(--v-theme-surface-light));
|
|
19966
|
-
}
|
|
19967
|
-
.v-autocomplete__selection {
|
|
19968
|
-
display: inline-flex;
|
|
19969
|
-
align-items: center;
|
|
19970
|
-
height: 1.5rem;
|
|
19971
|
-
letter-spacing: inherit;
|
|
19972
|
-
line-height: inherit;
|
|
19973
|
-
max-width: calc(100% - 2px - 2px);
|
|
19974
|
-
}
|
|
19975
|
-
.v-autocomplete__selection:first-child {
|
|
19976
|
-
margin-inline-start: 0;
|
|
19977
|
-
}
|
|
19978
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
19979
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
19980
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
19981
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
19982
|
-
top: 0px;
|
|
19983
|
-
}
|
|
19984
|
-
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
|
19985
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
19986
|
-
}
|
|
19987
|
-
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
|
19988
|
-
opacity: 1;
|
|
19989
|
-
}
|
|
19990
|
-
.v-autocomplete--selecting-index .v-field__input > input {
|
|
19991
|
-
caret-color: transparent;
|
|
19992
|
-
}
|
|
19993
|
-
.v-autocomplete--single.v-text-field .v-field--focused input {
|
|
19994
|
-
flex: 1 1;
|
|
19995
|
-
position: absolute;
|
|
19996
|
-
left: 0;
|
|
19997
|
-
right: 0;
|
|
19998
|
-
width: 100%;
|
|
19999
|
-
padding-inline: inherit;
|
|
20000
|
-
}
|
|
20001
|
-
.v-autocomplete--single .v-field--active input {
|
|
20002
|
-
transition: none;
|
|
20003
|
-
}
|
|
20004
|
-
.v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
|
|
20005
|
-
opacity: 0;
|
|
20006
|
-
}
|
|
20007
|
-
.v-autocomplete--single .v-field--focused .v-autocomplete__selection {
|
|
20008
|
-
opacity: 0;
|
|
20009
|
-
}
|
|
20010
|
-
.v-autocomplete__menu-icon {
|
|
20011
|
-
margin-inline-start: 4px;
|
|
20012
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
20013
|
-
}
|
|
20014
|
-
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
|
20015
|
-
opacity: var(--v-high-emphasis-opacity);
|
|
20016
|
-
transform: rotate(180deg);
|
|
20017
20017
|
}.v-date-picker {
|
|
20018
20018
|
overflow: hidden;
|
|
20019
20019
|
width: 328px;
|
|
@@ -20191,6 +20191,21 @@ html.overflow-y-hidden {
|
|
|
20191
20191
|
|
|
20192
20192
|
.v-date-picker-month__day--hide-adjacent {
|
|
20193
20193
|
opacity: 0;
|
|
20194
|
+
}.v-date-picker-years {
|
|
20195
|
+
height: 288px;
|
|
20196
|
+
overflow-y: scroll;
|
|
20197
|
+
}
|
|
20198
|
+
|
|
20199
|
+
.v-date-picker-years__content {
|
|
20200
|
+
display: grid;
|
|
20201
|
+
flex: 1 1;
|
|
20202
|
+
justify-content: space-around;
|
|
20203
|
+
grid-template-columns: repeat(3, 1fr);
|
|
20204
|
+
gap: 8px 24px;
|
|
20205
|
+
padding-inline: 32px;
|
|
20206
|
+
}
|
|
20207
|
+
.v-date-picker-years__content .v-btn {
|
|
20208
|
+
padding-inline: 8px;
|
|
20194
20209
|
}.v-date-picker-months {
|
|
20195
20210
|
height: 288px;
|
|
20196
20211
|
}
|
|
@@ -20210,21 +20225,6 @@ html.overflow-y-hidden {
|
|
|
20210
20225
|
text-transform: none;
|
|
20211
20226
|
padding-inline-start: 8px;
|
|
20212
20227
|
padding-inline-end: 8px;
|
|
20213
|
-
}.v-date-picker-years {
|
|
20214
|
-
height: 288px;
|
|
20215
|
-
overflow-y: scroll;
|
|
20216
|
-
}
|
|
20217
|
-
|
|
20218
|
-
.v-date-picker-years__content {
|
|
20219
|
-
display: grid;
|
|
20220
|
-
flex: 1 1;
|
|
20221
|
-
justify-content: space-around;
|
|
20222
|
-
grid-template-columns: repeat(3, 1fr);
|
|
20223
|
-
gap: 8px 24px;
|
|
20224
|
-
padding-inline: 32px;
|
|
20225
|
-
}
|
|
20226
|
-
.v-date-picker-years__content .v-btn {
|
|
20227
|
-
padding-inline: 8px;
|
|
20228
20228
|
}.v-dialog {
|
|
20229
20229
|
align-items: center;
|
|
20230
20230
|
justify-content: center;
|
|
@@ -20313,6 +20313,35 @@ html.overflow-y-hidden {
|
|
|
20313
20313
|
-webkit-backface-visibility: hidden;
|
|
20314
20314
|
backface-visibility: hidden;
|
|
20315
20315
|
overflow-y: auto;
|
|
20316
|
+
}.v-divider {
|
|
20317
|
+
display: block;
|
|
20318
|
+
flex: 1 1 100%;
|
|
20319
|
+
height: 0px;
|
|
20320
|
+
max-height: 0px;
|
|
20321
|
+
opacity: var(--v-border-opacity);
|
|
20322
|
+
transition: inherit;
|
|
20323
|
+
border-style: solid;
|
|
20324
|
+
border-width: thin 0 0 0;
|
|
20325
|
+
}
|
|
20326
|
+
.v-divider--vertical {
|
|
20327
|
+
align-self: stretch;
|
|
20328
|
+
border-width: 0 thin 0 0;
|
|
20329
|
+
display: inline-flex;
|
|
20330
|
+
height: inherit;
|
|
20331
|
+
margin-left: -1px;
|
|
20332
|
+
max-height: 100%;
|
|
20333
|
+
max-width: 0px;
|
|
20334
|
+
vertical-align: text-bottom;
|
|
20335
|
+
width: 0px;
|
|
20336
|
+
}
|
|
20337
|
+
.v-divider--inset:not(.v-divider--vertical) {
|
|
20338
|
+
max-width: calc(100% - 72px);
|
|
20339
|
+
margin-inline-start: 72px;
|
|
20340
|
+
}
|
|
20341
|
+
.v-divider--inset.v-divider--vertical {
|
|
20342
|
+
margin-bottom: 8px;
|
|
20343
|
+
margin-top: 8px;
|
|
20344
|
+
max-height: calc(100% - 16px);
|
|
20316
20345
|
}.v-expansion-panel {
|
|
20317
20346
|
background-color: rgb(var(--v-theme-surface));
|
|
20318
20347
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
@@ -20446,23 +20475,20 @@ html.overflow-y-hidden {
|
|
|
20446
20475
|
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
20447
20476
|
}
|
|
20448
20477
|
}
|
|
20449
|
-
.v-expansion-panel-title--
|
|
20478
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay {
|
|
20450
20479
|
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
20451
20480
|
}
|
|
20452
|
-
.v-expansion-panel-title--
|
|
20481
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay {
|
|
20453
20482
|
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
20454
20483
|
}
|
|
20455
|
-
.v-expansion-panel-title--
|
|
20484
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay {
|
|
20456
20485
|
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
20457
20486
|
}
|
|
20458
20487
|
@supports not selector(:focus-visible) {
|
|
20459
|
-
.v-expansion-panel-title--
|
|
20488
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay {
|
|
20460
20489
|
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
20461
20490
|
}
|
|
20462
20491
|
}
|
|
20463
|
-
.v-expansion-panel-title--active::before {
|
|
20464
|
-
opacity: 0.12;
|
|
20465
|
-
}
|
|
20466
20492
|
|
|
20467
20493
|
.v-expansion-panel-title__overlay {
|
|
20468
20494
|
position: absolute;
|
|
@@ -20526,35 +20552,26 @@ html.overflow-y-hidden {
|
|
|
20526
20552
|
}
|
|
20527
20553
|
.v-expansion-panels--tile > .v-expansion-panel {
|
|
20528
20554
|
border-radius: 0;
|
|
20529
|
-
}.v-
|
|
20530
|
-
|
|
20531
|
-
|
|
20532
|
-
|
|
20533
|
-
|
|
20534
|
-
opacity: var(--v-border-opacity);
|
|
20535
|
-
transition: inherit;
|
|
20536
|
-
border-style: solid;
|
|
20537
|
-
border-width: thin 0 0 0;
|
|
20538
|
-
}
|
|
20539
|
-
.v-divider--vertical {
|
|
20540
|
-
align-self: stretch;
|
|
20541
|
-
border-width: 0 thin 0 0;
|
|
20542
|
-
display: inline-flex;
|
|
20543
|
-
height: inherit;
|
|
20544
|
-
margin-left: -1px;
|
|
20545
|
-
max-height: 100%;
|
|
20546
|
-
max-width: 0px;
|
|
20547
|
-
vertical-align: text-bottom;
|
|
20548
|
-
width: 0px;
|
|
20555
|
+
}.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
20556
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
20557
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
20558
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
20559
|
+
top: 0px;
|
|
20549
20560
|
}
|
|
20550
|
-
.v-
|
|
20551
|
-
|
|
20552
|
-
|
|
20561
|
+
.v-file-input input[type=file] {
|
|
20562
|
+
height: 100%;
|
|
20563
|
+
left: 0;
|
|
20564
|
+
opacity: 0;
|
|
20565
|
+
position: absolute;
|
|
20566
|
+
top: 0;
|
|
20567
|
+
width: 100%;
|
|
20568
|
+
z-index: 1;
|
|
20553
20569
|
}
|
|
20554
|
-
.v-
|
|
20555
|
-
|
|
20556
|
-
|
|
20557
|
-
|
|
20570
|
+
.v-file-input .v-input__details {
|
|
20571
|
+
padding-inline: 16px;
|
|
20572
|
+
}
|
|
20573
|
+
.v-input--plain-underlined.v-file-input .v-input__details {
|
|
20574
|
+
padding-inline: 0;
|
|
20558
20575
|
}/* region INPUT */
|
|
20559
20576
|
.v-field {
|
|
20560
20577
|
display: grid;
|
|
@@ -21123,27 +21140,7 @@ textarea.v-field__input::placeholder {
|
|
|
21123
21140
|
opacity: 0;
|
|
21124
21141
|
}
|
|
21125
21142
|
|
|
21126
|
-
/* endregion */.v-
|
|
21127
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
21128
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
21129
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
21130
|
-
top: 0px;
|
|
21131
|
-
}
|
|
21132
|
-
.v-file-input input[type=file] {
|
|
21133
|
-
height: 100%;
|
|
21134
|
-
left: 0;
|
|
21135
|
-
opacity: 0;
|
|
21136
|
-
position: absolute;
|
|
21137
|
-
top: 0;
|
|
21138
|
-
width: 100%;
|
|
21139
|
-
z-index: 1;
|
|
21140
|
-
}
|
|
21141
|
-
.v-file-input .v-input__details {
|
|
21142
|
-
padding-inline: 16px;
|
|
21143
|
-
}
|
|
21144
|
-
.v-input--plain-underlined.v-file-input .v-input__details {
|
|
21145
|
-
padding-inline: 0;
|
|
21146
|
-
}.v-footer {
|
|
21143
|
+
/* endregion */.v-footer {
|
|
21147
21144
|
align-items: center;
|
|
21148
21145
|
display: flex;
|
|
21149
21146
|
flex: 1 1 auto;
|
|
@@ -22010,8 +22007,6 @@ textarea.v-field__input::placeholder {
|
|
|
22010
22007
|
}
|
|
22011
22008
|
.v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
|
|
22012
22009
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
22013
|
-
}.v-locale-provider {
|
|
22014
|
-
display: contents;
|
|
22015
22010
|
}.v-main {
|
|
22016
22011
|
flex: 1 0 auto;
|
|
22017
22012
|
max-width: 100%;
|
|
@@ -22040,6 +22035,8 @@ textarea.v-field__input::placeholder {
|
|
|
22040
22035
|
--v-layout-right: 0px;
|
|
22041
22036
|
--v-layout-top: 0px;
|
|
22042
22037
|
--v-layout-bottom: 0px;
|
|
22038
|
+
}.v-locale-provider {
|
|
22039
|
+
display: contents;
|
|
22043
22040
|
}.v-menu > .v-overlay__content {
|
|
22044
22041
|
display: flex;
|
|
22045
22042
|
flex-direction: column;
|
|
@@ -22167,6 +22164,62 @@ textarea.v-field__input::placeholder {
|
|
|
22167
22164
|
.v-navigation-drawer__append {
|
|
22168
22165
|
flex: none;
|
|
22169
22166
|
overflow: hidden;
|
|
22167
|
+
}.v-otp-input {
|
|
22168
|
+
border-radius: 4px;
|
|
22169
|
+
align-items: center;
|
|
22170
|
+
display: flex;
|
|
22171
|
+
justify-content: center;
|
|
22172
|
+
padding: 0.5rem 0;
|
|
22173
|
+
position: relative;
|
|
22174
|
+
}
|
|
22175
|
+
.v-otp-input .v-field {
|
|
22176
|
+
height: 100%;
|
|
22177
|
+
}
|
|
22178
|
+
|
|
22179
|
+
.v-otp-input__divider {
|
|
22180
|
+
margin: 0 8px;
|
|
22181
|
+
}
|
|
22182
|
+
|
|
22183
|
+
.v-otp-input__content {
|
|
22184
|
+
align-items: center;
|
|
22185
|
+
display: flex;
|
|
22186
|
+
gap: 0.5rem;
|
|
22187
|
+
height: 64px;
|
|
22188
|
+
padding: 0.5rem;
|
|
22189
|
+
justify-content: center;
|
|
22190
|
+
max-width: 320px;
|
|
22191
|
+
position: relative;
|
|
22192
|
+
border-radius: inherit;
|
|
22193
|
+
}
|
|
22194
|
+
.v-otp-input--divided .v-otp-input__content {
|
|
22195
|
+
max-width: 360px;
|
|
22196
|
+
}
|
|
22197
|
+
|
|
22198
|
+
.v-otp-input__field {
|
|
22199
|
+
color: inherit;
|
|
22200
|
+
font-size: 1.25rem;
|
|
22201
|
+
height: 100%;
|
|
22202
|
+
outline: none;
|
|
22203
|
+
text-align: center;
|
|
22204
|
+
width: 100%;
|
|
22205
|
+
}
|
|
22206
|
+
.v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
|
|
22207
|
+
-webkit-appearance: none;
|
|
22208
|
+
margin: 0;
|
|
22209
|
+
}
|
|
22210
|
+
.v-otp-input__field[type=number] {
|
|
22211
|
+
-moz-appearance: textfield;
|
|
22212
|
+
}
|
|
22213
|
+
|
|
22214
|
+
.v-otp-input__loader {
|
|
22215
|
+
align-items: center;
|
|
22216
|
+
display: flex;
|
|
22217
|
+
height: 100%;
|
|
22218
|
+
justify-content: center;
|
|
22219
|
+
width: 100%;
|
|
22220
|
+
}
|
|
22221
|
+
.v-otp-input__loader .v-progress-linear {
|
|
22222
|
+
position: absolute;
|
|
22170
22223
|
}.v-overlay-container {
|
|
22171
22224
|
contain: layout;
|
|
22172
22225
|
left: 0;
|
|
@@ -22230,62 +22283,6 @@ html.v-overlay-scroll-blocked {
|
|
|
22230
22283
|
|
|
22231
22284
|
.v-overlay--scroll-blocked {
|
|
22232
22285
|
padding-inline-end: var(--v-scrollbar-offset);
|
|
22233
|
-
}.v-otp-input {
|
|
22234
|
-
border-radius: 4px;
|
|
22235
|
-
align-items: center;
|
|
22236
|
-
display: flex;
|
|
22237
|
-
justify-content: center;
|
|
22238
|
-
padding: 0.5rem 0;
|
|
22239
|
-
position: relative;
|
|
22240
|
-
}
|
|
22241
|
-
.v-otp-input .v-field {
|
|
22242
|
-
height: 100%;
|
|
22243
|
-
}
|
|
22244
|
-
|
|
22245
|
-
.v-otp-input__divider {
|
|
22246
|
-
margin: 0 8px;
|
|
22247
|
-
}
|
|
22248
|
-
|
|
22249
|
-
.v-otp-input__content {
|
|
22250
|
-
align-items: center;
|
|
22251
|
-
display: flex;
|
|
22252
|
-
gap: 0.5rem;
|
|
22253
|
-
height: 64px;
|
|
22254
|
-
padding: 0.5rem;
|
|
22255
|
-
justify-content: center;
|
|
22256
|
-
max-width: 320px;
|
|
22257
|
-
position: relative;
|
|
22258
|
-
border-radius: inherit;
|
|
22259
|
-
}
|
|
22260
|
-
.v-otp-input--divided .v-otp-input__content {
|
|
22261
|
-
max-width: 360px;
|
|
22262
|
-
}
|
|
22263
|
-
|
|
22264
|
-
.v-otp-input__field {
|
|
22265
|
-
color: inherit;
|
|
22266
|
-
font-size: 1.25rem;
|
|
22267
|
-
height: 100%;
|
|
22268
|
-
outline: none;
|
|
22269
|
-
text-align: center;
|
|
22270
|
-
width: 100%;
|
|
22271
|
-
}
|
|
22272
|
-
.v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
|
|
22273
|
-
-webkit-appearance: none;
|
|
22274
|
-
margin: 0;
|
|
22275
|
-
}
|
|
22276
|
-
.v-otp-input__field[type=number] {
|
|
22277
|
-
-moz-appearance: textfield;
|
|
22278
|
-
}
|
|
22279
|
-
|
|
22280
|
-
.v-otp-input__loader {
|
|
22281
|
-
align-items: center;
|
|
22282
|
-
display: flex;
|
|
22283
|
-
height: 100%;
|
|
22284
|
-
justify-content: center;
|
|
22285
|
-
width: 100%;
|
|
22286
|
-
}
|
|
22287
|
-
.v-otp-input__loader .v-progress-linear {
|
|
22288
|
-
position: absolute;
|
|
22289
22286
|
}.v-pagination__list {
|
|
22290
22287
|
display: inline-flex;
|
|
22291
22288
|
list-style-type: none;
|
|
@@ -22294,12 +22291,6 @@ html.v-overlay-scroll-blocked {
|
|
|
22294
22291
|
}
|
|
22295
22292
|
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
|
22296
22293
|
margin: 0.3rem;
|
|
22297
|
-
}.v-parallax {
|
|
22298
|
-
position: relative;
|
|
22299
|
-
overflow: hidden;
|
|
22300
|
-
}
|
|
22301
|
-
.v-parallax--active > .v-img__img {
|
|
22302
|
-
will-change: transform;
|
|
22303
22294
|
}.v-progress-circular {
|
|
22304
22295
|
align-items: center;
|
|
22305
22296
|
display: inline-flex;
|
|
@@ -22402,6 +22393,12 @@ html.v-overlay-scroll-blocked {
|
|
|
22402
22393
|
100% {
|
|
22403
22394
|
transform: rotate(270deg);
|
|
22404
22395
|
}
|
|
22396
|
+
}.v-parallax {
|
|
22397
|
+
position: relative;
|
|
22398
|
+
overflow: hidden;
|
|
22399
|
+
}
|
|
22400
|
+
.v-parallax--active > .v-img__img {
|
|
22401
|
+
will-change: transform;
|
|
22405
22402
|
}.v-progress-linear {
|
|
22406
22403
|
background: transparent;
|
|
22407
22404
|
overflow: hidden;
|
|
@@ -22624,60 +22621,6 @@ html.v-overlay-scroll-blocked {
|
|
|
22624
22621
|
}
|
|
22625
22622
|
.v-radio-group .v-input__details {
|
|
22626
22623
|
padding-inline: 16px;
|
|
22627
|
-
}.v-rating {
|
|
22628
|
-
max-width: 100%;
|
|
22629
|
-
display: inline-flex;
|
|
22630
|
-
white-space: nowrap;
|
|
22631
|
-
}
|
|
22632
|
-
.v-rating--readonly {
|
|
22633
|
-
pointer-events: none;
|
|
22634
|
-
}
|
|
22635
|
-
|
|
22636
|
-
.v-rating__wrapper {
|
|
22637
|
-
align-items: center;
|
|
22638
|
-
display: inline-flex;
|
|
22639
|
-
flex-direction: column;
|
|
22640
|
-
}
|
|
22641
|
-
.v-rating__wrapper--bottom {
|
|
22642
|
-
flex-direction: column-reverse;
|
|
22643
|
-
}
|
|
22644
|
-
|
|
22645
|
-
.v-rating__item {
|
|
22646
|
-
display: inline-flex;
|
|
22647
|
-
position: relative;
|
|
22648
|
-
}
|
|
22649
|
-
.v-rating__item label {
|
|
22650
|
-
cursor: pointer;
|
|
22651
|
-
}
|
|
22652
|
-
.v-rating__item .v-btn--variant-plain {
|
|
22653
|
-
opacity: 1;
|
|
22654
|
-
}
|
|
22655
|
-
.v-rating__item .v-btn {
|
|
22656
|
-
transition-property: transform;
|
|
22657
|
-
}
|
|
22658
|
-
.v-rating__item .v-btn .v-icon {
|
|
22659
|
-
transition: inherit;
|
|
22660
|
-
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
22661
|
-
}
|
|
22662
|
-
.v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
|
|
22663
|
-
transform: scale(1.25);
|
|
22664
|
-
}
|
|
22665
|
-
.v-rating__item--half {
|
|
22666
|
-
overflow: hidden;
|
|
22667
|
-
position: absolute;
|
|
22668
|
-
-webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
|
22669
|
-
clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
|
22670
|
-
z-index: 1;
|
|
22671
|
-
}
|
|
22672
|
-
.v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
|
|
22673
|
-
opacity: 0;
|
|
22674
|
-
}
|
|
22675
|
-
|
|
22676
|
-
.v-rating__hidden {
|
|
22677
|
-
height: 0;
|
|
22678
|
-
opacity: 0;
|
|
22679
|
-
position: absolute;
|
|
22680
|
-
width: 0;
|
|
22681
22624
|
}.v-slider .v-slider__container input {
|
|
22682
22625
|
cursor: default;
|
|
22683
22626
|
padding: 0;
|
|
@@ -22710,31 +22653,85 @@ html.v-overlay-scroll-blocked {
|
|
|
22710
22653
|
align-items: center;
|
|
22711
22654
|
margin-inline: 8px 8px;
|
|
22712
22655
|
}
|
|
22713
|
-
.v-slider.v-input--horizontal > .v-input__control {
|
|
22714
|
-
min-height: 32px;
|
|
22715
|
-
display: flex;
|
|
22716
|
-
align-items: center;
|
|
22656
|
+
.v-slider.v-input--horizontal > .v-input__control {
|
|
22657
|
+
min-height: 32px;
|
|
22658
|
+
display: flex;
|
|
22659
|
+
align-items: center;
|
|
22660
|
+
}
|
|
22661
|
+
|
|
22662
|
+
.v-slider.v-input--vertical {
|
|
22663
|
+
justify-content: center;
|
|
22664
|
+
margin-top: 12px;
|
|
22665
|
+
margin-bottom: 12px;
|
|
22666
|
+
}
|
|
22667
|
+
.v-slider.v-input--vertical > .v-input__control {
|
|
22668
|
+
min-height: 300px;
|
|
22669
|
+
}
|
|
22670
|
+
|
|
22671
|
+
.v-slider.v-input--disabled {
|
|
22672
|
+
pointer-events: none;
|
|
22673
|
+
}
|
|
22674
|
+
|
|
22675
|
+
.v-slider--has-labels > .v-input__control {
|
|
22676
|
+
margin-bottom: 4px;
|
|
22677
|
+
}
|
|
22678
|
+
|
|
22679
|
+
.v-slider__label {
|
|
22680
|
+
margin-inline-end: 12px;
|
|
22681
|
+
}.v-rating {
|
|
22682
|
+
max-width: 100%;
|
|
22683
|
+
display: inline-flex;
|
|
22684
|
+
white-space: nowrap;
|
|
22685
|
+
}
|
|
22686
|
+
.v-rating--readonly {
|
|
22687
|
+
pointer-events: none;
|
|
22688
|
+
}
|
|
22689
|
+
|
|
22690
|
+
.v-rating__wrapper {
|
|
22691
|
+
align-items: center;
|
|
22692
|
+
display: inline-flex;
|
|
22693
|
+
flex-direction: column;
|
|
22694
|
+
}
|
|
22695
|
+
.v-rating__wrapper--bottom {
|
|
22696
|
+
flex-direction: column-reverse;
|
|
22697
|
+
}
|
|
22698
|
+
|
|
22699
|
+
.v-rating__item {
|
|
22700
|
+
display: inline-flex;
|
|
22701
|
+
position: relative;
|
|
22702
|
+
}
|
|
22703
|
+
.v-rating__item label {
|
|
22704
|
+
cursor: pointer;
|
|
22705
|
+
}
|
|
22706
|
+
.v-rating__item .v-btn--variant-plain {
|
|
22707
|
+
opacity: 1;
|
|
22708
|
+
}
|
|
22709
|
+
.v-rating__item .v-btn {
|
|
22710
|
+
transition-property: transform;
|
|
22717
22711
|
}
|
|
22718
|
-
|
|
22719
|
-
|
|
22720
|
-
|
|
22721
|
-
margin-top: 12px;
|
|
22722
|
-
margin-bottom: 12px;
|
|
22712
|
+
.v-rating__item .v-btn .v-icon {
|
|
22713
|
+
transition: inherit;
|
|
22714
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
22723
22715
|
}
|
|
22724
|
-
.v-
|
|
22725
|
-
|
|
22716
|
+
.v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
|
|
22717
|
+
transform: scale(1.25);
|
|
22726
22718
|
}
|
|
22727
|
-
|
|
22728
|
-
|
|
22729
|
-
|
|
22719
|
+
.v-rating__item--half {
|
|
22720
|
+
overflow: hidden;
|
|
22721
|
+
position: absolute;
|
|
22722
|
+
-webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
|
22723
|
+
clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
|
22724
|
+
z-index: 1;
|
|
22730
22725
|
}
|
|
22731
|
-
|
|
22732
|
-
|
|
22733
|
-
margin-bottom: 4px;
|
|
22726
|
+
.v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
|
|
22727
|
+
opacity: 0;
|
|
22734
22728
|
}
|
|
22735
22729
|
|
|
22736
|
-
.v-
|
|
22737
|
-
|
|
22730
|
+
.v-rating__hidden {
|
|
22731
|
+
height: 0;
|
|
22732
|
+
opacity: 0;
|
|
22733
|
+
position: absolute;
|
|
22734
|
+
width: 0;
|
|
22738
22735
|
}.v-responsive {
|
|
22739
22736
|
display: flex;
|
|
22740
22737
|
flex: 1 0 auto;
|
|
@@ -22946,6 +22943,48 @@ html.v-overlay-scroll-blocked {
|
|
|
22946
22943
|
}
|
|
22947
22944
|
.v-sheet--rounded {
|
|
22948
22945
|
border-radius: 4px;
|
|
22946
|
+
}.v-slide-group {
|
|
22947
|
+
display: flex;
|
|
22948
|
+
overflow: hidden;
|
|
22949
|
+
}
|
|
22950
|
+
|
|
22951
|
+
.v-slide-group__next,
|
|
22952
|
+
.v-slide-group__prev {
|
|
22953
|
+
align-items: center;
|
|
22954
|
+
display: flex;
|
|
22955
|
+
flex: 0 1 52px;
|
|
22956
|
+
justify-content: center;
|
|
22957
|
+
min-width: 52px;
|
|
22958
|
+
cursor: pointer;
|
|
22959
|
+
}
|
|
22960
|
+
.v-slide-group__next--disabled,
|
|
22961
|
+
.v-slide-group__prev--disabled {
|
|
22962
|
+
pointer-events: none;
|
|
22963
|
+
opacity: var(--v-disabled-opacity);
|
|
22964
|
+
}
|
|
22965
|
+
|
|
22966
|
+
.v-slide-group__content {
|
|
22967
|
+
display: flex;
|
|
22968
|
+
flex: 1 0 auto;
|
|
22969
|
+
position: relative;
|
|
22970
|
+
transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
|
|
22971
|
+
white-space: nowrap;
|
|
22972
|
+
}
|
|
22973
|
+
.v-slide-group__content > * {
|
|
22974
|
+
white-space: initial;
|
|
22975
|
+
}
|
|
22976
|
+
|
|
22977
|
+
.v-slide-group__container {
|
|
22978
|
+
contain: content;
|
|
22979
|
+
display: flex;
|
|
22980
|
+
flex: 1 1 auto;
|
|
22981
|
+
overflow: hidden;
|
|
22982
|
+
}
|
|
22983
|
+
|
|
22984
|
+
.v-slide-group--vertical,
|
|
22985
|
+
.v-slide-group--vertical .v-slide-group__container,
|
|
22986
|
+
.v-slide-group--vertical .v-slide-group__content {
|
|
22987
|
+
flex-direction: column;
|
|
22949
22988
|
}.v-skeleton-loader {
|
|
22950
22989
|
align-items: center;
|
|
22951
22990
|
background: rgb(var(--v-theme-surface));
|
|
@@ -23169,48 +23208,6 @@ html.v-overlay-scroll-blocked {
|
|
|
23169
23208
|
100% {
|
|
23170
23209
|
transform: translateX(100%);
|
|
23171
23210
|
}
|
|
23172
|
-
}.v-slide-group {
|
|
23173
|
-
display: flex;
|
|
23174
|
-
overflow: hidden;
|
|
23175
|
-
}
|
|
23176
|
-
|
|
23177
|
-
.v-slide-group__next,
|
|
23178
|
-
.v-slide-group__prev {
|
|
23179
|
-
align-items: center;
|
|
23180
|
-
display: flex;
|
|
23181
|
-
flex: 0 1 52px;
|
|
23182
|
-
justify-content: center;
|
|
23183
|
-
min-width: 52px;
|
|
23184
|
-
cursor: pointer;
|
|
23185
|
-
}
|
|
23186
|
-
.v-slide-group__next--disabled,
|
|
23187
|
-
.v-slide-group__prev--disabled {
|
|
23188
|
-
pointer-events: none;
|
|
23189
|
-
opacity: var(--v-disabled-opacity);
|
|
23190
|
-
}
|
|
23191
|
-
|
|
23192
|
-
.v-slide-group__content {
|
|
23193
|
-
display: flex;
|
|
23194
|
-
flex: 1 0 auto;
|
|
23195
|
-
position: relative;
|
|
23196
|
-
transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
|
|
23197
|
-
white-space: nowrap;
|
|
23198
|
-
}
|
|
23199
|
-
.v-slide-group__content > * {
|
|
23200
|
-
white-space: initial;
|
|
23201
|
-
}
|
|
23202
|
-
|
|
23203
|
-
.v-slide-group__container {
|
|
23204
|
-
contain: content;
|
|
23205
|
-
display: flex;
|
|
23206
|
-
flex: 1 1 auto;
|
|
23207
|
-
overflow: hidden;
|
|
23208
|
-
}
|
|
23209
|
-
|
|
23210
|
-
.v-slide-group--vertical,
|
|
23211
|
-
.v-slide-group--vertical .v-slide-group__container,
|
|
23212
|
-
.v-slide-group--vertical .v-slide-group__content {
|
|
23213
|
-
flex-direction: column;
|
|
23214
23211
|
}.v-snackbar {
|
|
23215
23212
|
justify-content: center;
|
|
23216
23213
|
z-index: 10000;
|
|
@@ -23830,45 +23827,6 @@ html.v-overlay-scroll-blocked {
|
|
|
23830
23827
|
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
|
23831
23828
|
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
|
23832
23829
|
border-top: 0px !important;
|
|
23833
|
-
}.v-textarea .v-field {
|
|
23834
|
-
--v-textarea-control-height: var(--v-input-control-height);
|
|
23835
|
-
}
|
|
23836
|
-
.v-textarea .v-field__field {
|
|
23837
|
-
--v-input-control-height: var(--v-textarea-control-height);
|
|
23838
|
-
}
|
|
23839
|
-
.v-textarea .v-field__input {
|
|
23840
|
-
flex: 1 1 auto;
|
|
23841
|
-
outline: none;
|
|
23842
|
-
-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));
|
|
23843
|
-
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));
|
|
23844
|
-
}
|
|
23845
|
-
.v-textarea .v-field__input.v-textarea__sizer {
|
|
23846
|
-
visibility: hidden;
|
|
23847
|
-
position: absolute;
|
|
23848
|
-
top: 0;
|
|
23849
|
-
left: 0;
|
|
23850
|
-
height: 0 !important;
|
|
23851
|
-
min-height: 0 !important;
|
|
23852
|
-
pointer-events: none;
|
|
23853
|
-
}
|
|
23854
|
-
.v-textarea--no-resize .v-field__input {
|
|
23855
|
-
resize: none;
|
|
23856
|
-
}
|
|
23857
|
-
.v-textarea .v-field--no-label textarea,
|
|
23858
|
-
.v-textarea .v-field--active textarea {
|
|
23859
|
-
opacity: 1;
|
|
23860
|
-
}
|
|
23861
|
-
.v-textarea textarea {
|
|
23862
|
-
opacity: 0;
|
|
23863
|
-
flex: 1;
|
|
23864
|
-
min-width: 0;
|
|
23865
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
23866
|
-
}
|
|
23867
|
-
.v-textarea textarea:focus, .v-textarea textarea:active {
|
|
23868
|
-
outline: none;
|
|
23869
|
-
}
|
|
23870
|
-
.v-textarea textarea:invalid {
|
|
23871
|
-
box-shadow: none;
|
|
23872
23830
|
}/* region BLOCK */
|
|
23873
23831
|
.v-text-field input {
|
|
23874
23832
|
color: inherit;
|
|
@@ -23936,136 +23894,48 @@ html.v-overlay-scroll-blocked {
|
|
|
23936
23894
|
padding-inline-end: var(--v-field-padding-end);
|
|
23937
23895
|
}
|
|
23938
23896
|
|
|
23939
|
-
/* endregion */.v-
|
|
23940
|
-
|
|
23941
|
-
color: rgb(var(--v-theme-on-background));
|
|
23942
|
-
}.v-toolbar {
|
|
23943
|
-
align-items: flex-start;
|
|
23944
|
-
display: flex;
|
|
23945
|
-
flex: none;
|
|
23946
|
-
flex-direction: column;
|
|
23947
|
-
justify-content: space-between;
|
|
23948
|
-
max-width: 100%;
|
|
23949
|
-
overflow: hidden;
|
|
23950
|
-
position: relative;
|
|
23951
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
23952
|
-
transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
|
|
23953
|
-
width: 100%;
|
|
23954
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
23955
|
-
border-style: solid;
|
|
23956
|
-
border-width: 0;
|
|
23957
|
-
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));
|
|
23958
|
-
border-radius: 0;
|
|
23959
|
-
background: rgb(var(--v-theme-surface-light));
|
|
23960
|
-
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
|
23961
|
-
}
|
|
23962
|
-
.v-toolbar--border {
|
|
23963
|
-
border-width: thin;
|
|
23964
|
-
box-shadow: none;
|
|
23965
|
-
}
|
|
23966
|
-
.v-toolbar--absolute {
|
|
23967
|
-
position: absolute;
|
|
23968
|
-
}
|
|
23969
|
-
.v-toolbar--collapse {
|
|
23970
|
-
max-width: 112px;
|
|
23971
|
-
overflow: hidden;
|
|
23972
|
-
border-end-end-radius: 24px;
|
|
23973
|
-
}
|
|
23974
|
-
.v-toolbar--collapse .v-toolbar-title {
|
|
23975
|
-
display: none;
|
|
23976
|
-
}
|
|
23977
|
-
.v-toolbar--flat {
|
|
23978
|
-
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));
|
|
23979
|
-
}
|
|
23980
|
-
.v-toolbar--floating {
|
|
23981
|
-
display: inline-flex;
|
|
23982
|
-
}
|
|
23983
|
-
.v-toolbar--rounded {
|
|
23984
|
-
border-radius: 4px;
|
|
23985
|
-
}
|
|
23986
|
-
|
|
23987
|
-
.v-toolbar__content,
|
|
23988
|
-
.v-toolbar__extension {
|
|
23989
|
-
align-items: center;
|
|
23990
|
-
display: flex;
|
|
23991
|
-
flex: 0 0 auto;
|
|
23992
|
-
position: relative;
|
|
23993
|
-
transition: inherit;
|
|
23994
|
-
width: 100%;
|
|
23995
|
-
}
|
|
23996
|
-
|
|
23997
|
-
.v-toolbar__content > .v-btn:first-child {
|
|
23998
|
-
margin-inline-start: 10px;
|
|
23999
|
-
}
|
|
24000
|
-
.v-toolbar__content > .v-btn:last-child {
|
|
24001
|
-
margin-inline-end: 10px;
|
|
24002
|
-
}
|
|
24003
|
-
.v-toolbar__content > .v-toolbar-title {
|
|
24004
|
-
margin-inline-start: 16px;
|
|
24005
|
-
}
|
|
24006
|
-
.v-toolbar--density-prominent .v-toolbar__content {
|
|
24007
|
-
align-items: flex-start;
|
|
24008
|
-
}
|
|
24009
|
-
|
|
24010
|
-
.v-toolbar__image {
|
|
24011
|
-
position: absolute;
|
|
24012
|
-
top: 0;
|
|
24013
|
-
left: 0;
|
|
24014
|
-
width: 100%;
|
|
24015
|
-
height: 100%;
|
|
24016
|
-
display: flex;
|
|
24017
|
-
opacity: var(--v-toolbar-image-opacity, 1);
|
|
24018
|
-
transition-property: opacity;
|
|
23897
|
+
/* endregion */.v-textarea .v-field {
|
|
23898
|
+
--v-textarea-control-height: var(--v-input-control-height);
|
|
24019
23899
|
}
|
|
24020
|
-
|
|
24021
|
-
|
|
24022
|
-
.v-toolbar__append {
|
|
24023
|
-
align-items: center;
|
|
24024
|
-
align-self: stretch;
|
|
24025
|
-
display: flex;
|
|
23900
|
+
.v-textarea .v-field__field {
|
|
23901
|
+
--v-input-control-height: var(--v-textarea-control-height);
|
|
24026
23902
|
}
|
|
24027
|
-
|
|
24028
|
-
|
|
24029
|
-
|
|
23903
|
+
.v-textarea .v-field__input {
|
|
23904
|
+
flex: 1 1 auto;
|
|
23905
|
+
outline: none;
|
|
23906
|
+
-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));
|
|
23907
|
+
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));
|
|
24030
23908
|
}
|
|
24031
|
-
|
|
24032
|
-
|
|
24033
|
-
|
|
23909
|
+
.v-textarea .v-field__input.v-textarea__sizer {
|
|
23910
|
+
visibility: hidden;
|
|
23911
|
+
position: absolute;
|
|
23912
|
+
top: 0;
|
|
23913
|
+
left: 0;
|
|
23914
|
+
height: 0 !important;
|
|
23915
|
+
min-height: 0 !important;
|
|
23916
|
+
pointer-events: none;
|
|
24034
23917
|
}
|
|
24035
|
-
|
|
24036
|
-
|
|
24037
|
-
flex: 1 1;
|
|
24038
|
-
font-size: 1.25rem;
|
|
24039
|
-
min-width: 0;
|
|
24040
|
-
font-size: 1.25rem;
|
|
24041
|
-
font-weight: 400;
|
|
24042
|
-
letter-spacing: 0;
|
|
24043
|
-
line-height: 1.75rem;
|
|
24044
|
-
text-transform: none;
|
|
23918
|
+
.v-textarea--no-resize .v-field__input {
|
|
23919
|
+
resize: none;
|
|
24045
23920
|
}
|
|
24046
|
-
.v-
|
|
24047
|
-
|
|
24048
|
-
|
|
24049
|
-
font-size: 1.5rem;
|
|
24050
|
-
font-weight: 400;
|
|
24051
|
-
letter-spacing: 0;
|
|
24052
|
-
line-height: 2.25rem;
|
|
24053
|
-
text-transform: none;
|
|
23921
|
+
.v-textarea .v-field--no-label textarea,
|
|
23922
|
+
.v-textarea .v-field--active textarea {
|
|
23923
|
+
opacity: 1;
|
|
24054
23924
|
}
|
|
24055
|
-
|
|
24056
|
-
|
|
24057
|
-
|
|
24058
|
-
|
|
24059
|
-
|
|
23925
|
+
.v-textarea textarea {
|
|
23926
|
+
opacity: 0;
|
|
23927
|
+
flex: 1;
|
|
23928
|
+
min-width: 0;
|
|
23929
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
24060
23930
|
}
|
|
24061
|
-
|
|
24062
|
-
|
|
24063
|
-
display: flex;
|
|
24064
|
-
height: inherit;
|
|
24065
|
-
align-self: stretch;
|
|
23931
|
+
.v-textarea textarea:focus, .v-textarea textarea:active {
|
|
23932
|
+
outline: none;
|
|
24066
23933
|
}
|
|
24067
|
-
.v-
|
|
24068
|
-
|
|
23934
|
+
.v-textarea textarea:invalid {
|
|
23935
|
+
box-shadow: none;
|
|
23936
|
+
}.v-theme-provider {
|
|
23937
|
+
background: rgb(var(--v-theme-background));
|
|
23938
|
+
color: rgb(var(--v-theme-on-background));
|
|
24069
23939
|
}.v-timeline .v-timeline-divider__dot {
|
|
24070
23940
|
background: rgb(var(--v-theme-surface-light));
|
|
24071
23941
|
}
|
|
@@ -24482,6 +24352,133 @@ html.v-overlay-scroll-blocked {
|
|
|
24482
24352
|
|
|
24483
24353
|
.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 {
|
|
24484
24354
|
padding-inline-end: 0;
|
|
24355
|
+
}.v-toolbar {
|
|
24356
|
+
align-items: flex-start;
|
|
24357
|
+
display: flex;
|
|
24358
|
+
flex: none;
|
|
24359
|
+
flex-direction: column;
|
|
24360
|
+
justify-content: space-between;
|
|
24361
|
+
max-width: 100%;
|
|
24362
|
+
overflow: hidden;
|
|
24363
|
+
position: relative;
|
|
24364
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
24365
|
+
transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
|
|
24366
|
+
width: 100%;
|
|
24367
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
24368
|
+
border-style: solid;
|
|
24369
|
+
border-width: 0;
|
|
24370
|
+
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));
|
|
24371
|
+
border-radius: 0;
|
|
24372
|
+
background: rgb(var(--v-theme-surface-light));
|
|
24373
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
|
24374
|
+
}
|
|
24375
|
+
.v-toolbar--border {
|
|
24376
|
+
border-width: thin;
|
|
24377
|
+
box-shadow: none;
|
|
24378
|
+
}
|
|
24379
|
+
.v-toolbar--absolute {
|
|
24380
|
+
position: absolute;
|
|
24381
|
+
}
|
|
24382
|
+
.v-toolbar--collapse {
|
|
24383
|
+
max-width: 112px;
|
|
24384
|
+
overflow: hidden;
|
|
24385
|
+
border-end-end-radius: 24px;
|
|
24386
|
+
}
|
|
24387
|
+
.v-toolbar--collapse .v-toolbar-title {
|
|
24388
|
+
display: none;
|
|
24389
|
+
}
|
|
24390
|
+
.v-toolbar--flat {
|
|
24391
|
+
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));
|
|
24392
|
+
}
|
|
24393
|
+
.v-toolbar--floating {
|
|
24394
|
+
display: inline-flex;
|
|
24395
|
+
}
|
|
24396
|
+
.v-toolbar--rounded {
|
|
24397
|
+
border-radius: 4px;
|
|
24398
|
+
}
|
|
24399
|
+
|
|
24400
|
+
.v-toolbar__content,
|
|
24401
|
+
.v-toolbar__extension {
|
|
24402
|
+
align-items: center;
|
|
24403
|
+
display: flex;
|
|
24404
|
+
flex: 0 0 auto;
|
|
24405
|
+
position: relative;
|
|
24406
|
+
transition: inherit;
|
|
24407
|
+
width: 100%;
|
|
24408
|
+
}
|
|
24409
|
+
|
|
24410
|
+
.v-toolbar__content > .v-btn:first-child {
|
|
24411
|
+
margin-inline-start: 10px;
|
|
24412
|
+
}
|
|
24413
|
+
.v-toolbar__content > .v-btn:last-child {
|
|
24414
|
+
margin-inline-end: 10px;
|
|
24415
|
+
}
|
|
24416
|
+
.v-toolbar__content > .v-toolbar-title {
|
|
24417
|
+
margin-inline-start: 16px;
|
|
24418
|
+
}
|
|
24419
|
+
.v-toolbar--density-prominent .v-toolbar__content {
|
|
24420
|
+
align-items: flex-start;
|
|
24421
|
+
}
|
|
24422
|
+
|
|
24423
|
+
.v-toolbar__image {
|
|
24424
|
+
position: absolute;
|
|
24425
|
+
top: 0;
|
|
24426
|
+
left: 0;
|
|
24427
|
+
width: 100%;
|
|
24428
|
+
height: 100%;
|
|
24429
|
+
display: flex;
|
|
24430
|
+
opacity: var(--v-toolbar-image-opacity, 1);
|
|
24431
|
+
transition-property: opacity;
|
|
24432
|
+
}
|
|
24433
|
+
|
|
24434
|
+
.v-toolbar__prepend,
|
|
24435
|
+
.v-toolbar__append {
|
|
24436
|
+
align-items: center;
|
|
24437
|
+
align-self: stretch;
|
|
24438
|
+
display: flex;
|
|
24439
|
+
}
|
|
24440
|
+
|
|
24441
|
+
.v-toolbar__prepend {
|
|
24442
|
+
margin-inline: 10px auto;
|
|
24443
|
+
}
|
|
24444
|
+
|
|
24445
|
+
.v-toolbar__append {
|
|
24446
|
+
margin-inline: auto 10px;
|
|
24447
|
+
}
|
|
24448
|
+
|
|
24449
|
+
.v-toolbar-title {
|
|
24450
|
+
flex: 1 1;
|
|
24451
|
+
font-size: 1.25rem;
|
|
24452
|
+
min-width: 0;
|
|
24453
|
+
font-size: 1.25rem;
|
|
24454
|
+
font-weight: 400;
|
|
24455
|
+
letter-spacing: 0;
|
|
24456
|
+
line-height: 1.75rem;
|
|
24457
|
+
text-transform: none;
|
|
24458
|
+
}
|
|
24459
|
+
.v-toolbar--density-prominent .v-toolbar-title {
|
|
24460
|
+
align-self: flex-end;
|
|
24461
|
+
padding-bottom: 6px;
|
|
24462
|
+
font-size: 1.5rem;
|
|
24463
|
+
font-weight: 400;
|
|
24464
|
+
letter-spacing: 0;
|
|
24465
|
+
line-height: 2.25rem;
|
|
24466
|
+
text-transform: none;
|
|
24467
|
+
}
|
|
24468
|
+
|
|
24469
|
+
.v-toolbar-title__placeholder {
|
|
24470
|
+
overflow: hidden;
|
|
24471
|
+
text-overflow: ellipsis;
|
|
24472
|
+
white-space: nowrap;
|
|
24473
|
+
}
|
|
24474
|
+
|
|
24475
|
+
.v-toolbar-items {
|
|
24476
|
+
display: flex;
|
|
24477
|
+
height: inherit;
|
|
24478
|
+
align-self: stretch;
|
|
24479
|
+
}
|
|
24480
|
+
.v-toolbar-items > .v-btn {
|
|
24481
|
+
border-radius: 0;
|
|
24485
24482
|
}.v-tooltip > .v-overlay__content {
|
|
24486
24483
|
background: rgb(var(--v-theme-surface-variant));
|
|
24487
24484
|
color: rgb(var(--v-theme-on-surface-variant));
|
|
@@ -24604,41 +24601,6 @@ html.v-overlay-scroll-blocked {
|
|
|
24604
24601
|
}
|
|
24605
24602
|
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
|
24606
24603
|
will-change: transform;
|
|
24607
|
-
}.v-color-picker-swatches {
|
|
24608
|
-
overflow-y: auto;
|
|
24609
|
-
}
|
|
24610
|
-
.v-color-picker-swatches > div {
|
|
24611
|
-
display: flex;
|
|
24612
|
-
flex-wrap: wrap;
|
|
24613
|
-
justify-content: center;
|
|
24614
|
-
padding: 8px;
|
|
24615
|
-
}
|
|
24616
|
-
|
|
24617
|
-
.v-color-picker-swatches__swatch {
|
|
24618
|
-
display: flex;
|
|
24619
|
-
flex-direction: column;
|
|
24620
|
-
margin-bottom: 10px;
|
|
24621
|
-
}
|
|
24622
|
-
|
|
24623
|
-
.v-color-picker-swatches__color {
|
|
24624
|
-
position: relative;
|
|
24625
|
-
height: 18px;
|
|
24626
|
-
max-height: 18px;
|
|
24627
|
-
width: 45px;
|
|
24628
|
-
margin: 2px 4px;
|
|
24629
|
-
border-radius: 2px;
|
|
24630
|
-
-webkit-user-select: none;
|
|
24631
|
-
user-select: none;
|
|
24632
|
-
overflow: hidden;
|
|
24633
|
-
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
|
24634
|
-
cursor: pointer;
|
|
24635
|
-
}
|
|
24636
|
-
.v-color-picker-swatches__color > div {
|
|
24637
|
-
display: flex;
|
|
24638
|
-
align-items: center;
|
|
24639
|
-
justify-content: center;
|
|
24640
|
-
width: 100%;
|
|
24641
|
-
height: 100%;
|
|
24642
24604
|
}.v-color-picker-edit {
|
|
24643
24605
|
display: flex;
|
|
24644
24606
|
margin-top: 24px;
|
|
@@ -24736,6 +24698,41 @@ html.v-overlay-scroll-blocked {
|
|
|
24736
24698
|
.v-color-picker-preview__eye-dropper {
|
|
24737
24699
|
position: relative;
|
|
24738
24700
|
margin-right: 12px;
|
|
24701
|
+
}.v-color-picker-swatches {
|
|
24702
|
+
overflow-y: auto;
|
|
24703
|
+
}
|
|
24704
|
+
.v-color-picker-swatches > div {
|
|
24705
|
+
display: flex;
|
|
24706
|
+
flex-wrap: wrap;
|
|
24707
|
+
justify-content: center;
|
|
24708
|
+
padding: 8px;
|
|
24709
|
+
}
|
|
24710
|
+
|
|
24711
|
+
.v-color-picker-swatches__swatch {
|
|
24712
|
+
display: flex;
|
|
24713
|
+
flex-direction: column;
|
|
24714
|
+
margin-bottom: 10px;
|
|
24715
|
+
}
|
|
24716
|
+
|
|
24717
|
+
.v-color-picker-swatches__color {
|
|
24718
|
+
position: relative;
|
|
24719
|
+
height: 18px;
|
|
24720
|
+
max-height: 18px;
|
|
24721
|
+
width: 45px;
|
|
24722
|
+
margin: 2px 4px;
|
|
24723
|
+
border-radius: 2px;
|
|
24724
|
+
-webkit-user-select: none;
|
|
24725
|
+
user-select: none;
|
|
24726
|
+
overflow: hidden;
|
|
24727
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
|
24728
|
+
cursor: pointer;
|
|
24729
|
+
}
|
|
24730
|
+
.v-color-picker-swatches__color > div {
|
|
24731
|
+
display: flex;
|
|
24732
|
+
align-items: center;
|
|
24733
|
+
justify-content: center;
|
|
24734
|
+
width: 100%;
|
|
24735
|
+
height: 100%;
|
|
24739
24736
|
}.v-picker.v-sheet {
|
|
24740
24737
|
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));
|
|
24741
24738
|
border-radius: 4px;
|