@vuetify/nightly 3.4.10-dev.2024-01-16 → 3.4.10-dev.2024-01-17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -2
- package/dist/json/importMap.json +128 -128
- package/dist/json/web-types.json +76 -1
- package/dist/vuetify-labs.css +954 -952
- package/dist/vuetify-labs.d.ts +9 -2
- package/dist/vuetify-labs.esm.js +6 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +6 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +638 -638
- package/dist/vuetify.d.ts +45 -38
- package/dist/vuetify.esm.js +6 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +6 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -6
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +2 -2
- package/lib/components/VAlert/_variables.scss +2 -2
- package/lib/components/VAutocomplete/VAutocomplete.css +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
- package/lib/components/VCombobox/VCombobox.css +1 -1
- package/lib/components/VCombobox/VCombobox.sass +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +9 -2
- package/lib/components/VSlider/VSliderTrack.css +1 -1
- package/lib/components/VSlider/VSliderTrack.sass +1 -1
- package/lib/components/VSlider/_variables.scss +1 -0
- package/lib/components/VSystemBar/VSystemBar.css +2 -2
- package/lib/components/VSystemBar/_variables.scss +2 -2
- package/lib/components/VTimeline/VTimeline.css +1 -1
- package/lib/components/VTimeline/_variables.scss +1 -1
- package/lib/components/VToolbar/VToolbar.css +2 -2
- package/lib/components/VToolbar/_variables.scss +2 -2
- package/lib/components/index.d.mts +9 -2
- package/lib/composables/theme.mjs +2 -0
- 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 +36 -36
- package/lib/labs/VCalendar/VCalendar.css +4 -2
- package/lib/labs/VCalendar/VCalendar.sass +4 -2
- package/lib/labs/VCalendar/_variables.scss +5 -0
- package/package.json +1 -1
package/dist/vuetify-labs.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.4.10-dev.2024-01-
|
|
2
|
+
* Vuetify v3.4.10-dev.2024-01-17
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -16981,6 +16981,57 @@ html.overflow-y-hidden {
|
|
|
16981
16981
|
font-weight: normal;
|
|
16982
16982
|
padding: 0.2em 0.4rem;
|
|
16983
16983
|
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
16984
|
+
}.v-picker.v-sheet {
|
|
16985
|
+
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));
|
|
16986
|
+
border-radius: 4px;
|
|
16987
|
+
display: grid;
|
|
16988
|
+
grid-auto-rows: min-content;
|
|
16989
|
+
grid-template-areas: "title" "header" "body";
|
|
16990
|
+
overflow: hidden;
|
|
16991
|
+
}
|
|
16992
|
+
.v-picker.v-sheet.v-picker--with-actions {
|
|
16993
|
+
grid-template-areas: "title" "header" "body" "actions";
|
|
16994
|
+
}
|
|
16995
|
+
|
|
16996
|
+
.v-picker__body {
|
|
16997
|
+
grid-area: body;
|
|
16998
|
+
}
|
|
16999
|
+
|
|
17000
|
+
.v-picker__header {
|
|
17001
|
+
grid-area: header;
|
|
17002
|
+
}
|
|
17003
|
+
|
|
17004
|
+
.v-picker__actions {
|
|
17005
|
+
grid-area: actions;
|
|
17006
|
+
padding: 0 12px 12px 12px;
|
|
17007
|
+
display: flex;
|
|
17008
|
+
align-items: center;
|
|
17009
|
+
justify-content: flex-end;
|
|
17010
|
+
}
|
|
17011
|
+
.v-picker__actions .v-btn {
|
|
17012
|
+
min-width: 48px;
|
|
17013
|
+
}
|
|
17014
|
+
.v-picker__actions .v-btn:not(:last-child) {
|
|
17015
|
+
margin-inline-end: 8px;
|
|
17016
|
+
}
|
|
17017
|
+
|
|
17018
|
+
.v-picker--landscape {
|
|
17019
|
+
grid-template-areas: "title" "header body" "header body";
|
|
17020
|
+
}
|
|
17021
|
+
|
|
17022
|
+
.v-picker--landscape.v-picker--with-actions {
|
|
17023
|
+
grid-template-areas: "title" "header body" "header actions";
|
|
17024
|
+
}
|
|
17025
|
+
|
|
17026
|
+
.v-picker-title {
|
|
17027
|
+
text-transform: uppercase;
|
|
17028
|
+
font-size: 0.75rem;
|
|
17029
|
+
grid-area: title;
|
|
17030
|
+
padding-inline: 24px 12px;
|
|
17031
|
+
padding-top: 16px;
|
|
17032
|
+
padding-bottom: 16px;
|
|
17033
|
+
font-weight: 600;
|
|
17034
|
+
letter-spacing: 0.1666666667em;
|
|
16984
17035
|
}.v-calendar-weekly {
|
|
16985
17036
|
width: 100%;
|
|
16986
17037
|
height: 100%;
|
|
@@ -17072,7 +17123,8 @@ html.overflow-y-hidden {
|
|
|
17072
17123
|
}
|
|
17073
17124
|
|
|
17074
17125
|
.v-calendar-weekly__head-weeknumber {
|
|
17075
|
-
background: rgb(var(--v-theme-
|
|
17126
|
+
background: rgb(var(--v-theme-surface-light));
|
|
17127
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
|
17076
17128
|
}
|
|
17077
17129
|
|
|
17078
17130
|
.v-calendar-weekly__week {
|
|
@@ -17084,8 +17136,9 @@ html.overflow-y-hidden {
|
|
|
17084
17136
|
|
|
17085
17137
|
.v-calendar-month__weeknumber {
|
|
17086
17138
|
padding-top: 6px;
|
|
17087
|
-
background: rgb(var(--v-theme-
|
|
17139
|
+
background: rgb(var(--v-theme-surface-light));
|
|
17088
17140
|
border-bottom: thin solid #e0e0e0;
|
|
17141
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
|
17089
17142
|
text-align: center;
|
|
17090
17143
|
font-size: 12px;
|
|
17091
17144
|
font-weight: 500;
|
|
@@ -17202,19 +17255,6 @@ html.overflow-y-hidden {
|
|
|
17202
17255
|
}
|
|
17203
17256
|
.v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(8n) {
|
|
17204
17257
|
border-right: none;
|
|
17205
|
-
}.v-calendar-header {
|
|
17206
|
-
align-items: center;
|
|
17207
|
-
display: flex;
|
|
17208
|
-
min-height: 64px;
|
|
17209
|
-
}
|
|
17210
|
-
|
|
17211
|
-
.v-calendar-header__today {
|
|
17212
|
-
margin-inline-end: 24px;
|
|
17213
|
-
}
|
|
17214
|
-
|
|
17215
|
-
.v-calendar-header__title {
|
|
17216
|
-
font-size: 1.5rem;
|
|
17217
|
-
margin-inline-start: 24px;
|
|
17218
17258
|
}.v-calendar-day {
|
|
17219
17259
|
position: relative;
|
|
17220
17260
|
display: flex;
|
|
@@ -17351,69 +17391,35 @@ html.overflow-y-hidden {
|
|
|
17351
17391
|
|
|
17352
17392
|
.v-calendar-weekly__day-alldayevents-container {
|
|
17353
17393
|
min-height: 24px;
|
|
17354
|
-
}.v-
|
|
17355
|
-
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));
|
|
17356
|
-
border-radius: 4px;
|
|
17357
|
-
display: grid;
|
|
17358
|
-
grid-auto-rows: min-content;
|
|
17359
|
-
grid-template-areas: "title" "header" "body";
|
|
17360
|
-
overflow: hidden;
|
|
17361
|
-
}
|
|
17362
|
-
.v-picker.v-sheet.v-picker--with-actions {
|
|
17363
|
-
grid-template-areas: "title" "header" "body" "actions";
|
|
17364
|
-
}
|
|
17365
|
-
|
|
17366
|
-
.v-picker__body {
|
|
17367
|
-
grid-area: body;
|
|
17368
|
-
}
|
|
17369
|
-
|
|
17370
|
-
.v-picker__header {
|
|
17371
|
-
grid-area: header;
|
|
17372
|
-
}
|
|
17373
|
-
|
|
17374
|
-
.v-picker__actions {
|
|
17375
|
-
grid-area: actions;
|
|
17376
|
-
padding: 0 12px 12px 12px;
|
|
17377
|
-
display: flex;
|
|
17394
|
+
}.v-calendar-header {
|
|
17378
17395
|
align-items: center;
|
|
17379
|
-
|
|
17380
|
-
|
|
17381
|
-
.v-picker__actions .v-btn {
|
|
17382
|
-
min-width: 48px;
|
|
17383
|
-
}
|
|
17384
|
-
.v-picker__actions .v-btn:not(:last-child) {
|
|
17385
|
-
margin-inline-end: 8px;
|
|
17396
|
+
display: flex;
|
|
17397
|
+
min-height: 64px;
|
|
17386
17398
|
}
|
|
17387
17399
|
|
|
17388
|
-
.v-
|
|
17389
|
-
|
|
17400
|
+
.v-calendar-header__today {
|
|
17401
|
+
margin-inline-end: 24px;
|
|
17390
17402
|
}
|
|
17391
17403
|
|
|
17392
|
-
.v-
|
|
17393
|
-
|
|
17404
|
+
.v-calendar-header__title {
|
|
17405
|
+
font-size: 1.5rem;
|
|
17406
|
+
margin-inline-start: 24px;
|
|
17407
|
+
}.v-application {
|
|
17408
|
+
display: flex;
|
|
17409
|
+
background: rgb(var(--v-theme-background));
|
|
17410
|
+
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
17394
17411
|
}
|
|
17395
17412
|
|
|
17396
|
-
.v-
|
|
17397
|
-
|
|
17398
|
-
|
|
17399
|
-
grid-area: title;
|
|
17400
|
-
padding-inline: 24px 12px;
|
|
17401
|
-
padding-top: 16px;
|
|
17402
|
-
padding-bottom: 16px;
|
|
17403
|
-
font-weight: 600;
|
|
17404
|
-
letter-spacing: 0.1666666667em;
|
|
17405
|
-
}.v-app-bar {
|
|
17413
|
+
.v-application__wrap {
|
|
17414
|
+
-webkit-backface-visibility: hidden;
|
|
17415
|
+
backface-visibility: hidden;
|
|
17406
17416
|
display: flex;
|
|
17407
|
-
|
|
17408
|
-
|
|
17409
|
-
|
|
17410
|
-
|
|
17411
|
-
|
|
17412
|
-
|
|
17413
|
-
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));
|
|
17414
|
-
}
|
|
17415
|
-
.v-app-bar:not(.v-toolbar--absolute) {
|
|
17416
|
-
padding-inline-end: var(--v-scrollbar-offset);
|
|
17417
|
+
flex-direction: column;
|
|
17418
|
+
flex: 1 1 auto;
|
|
17419
|
+
max-width: 100%;
|
|
17420
|
+
min-height: 100vh;
|
|
17421
|
+
min-height: 100dvh;
|
|
17422
|
+
position: relative;
|
|
17417
17423
|
}.v-alert {
|
|
17418
17424
|
display: grid;
|
|
17419
17425
|
flex: 1 1;
|
|
@@ -17448,8 +17454,8 @@ html.overflow-y-hidden {
|
|
|
17448
17454
|
display: none;
|
|
17449
17455
|
}
|
|
17450
17456
|
.v-alert--variant-elevated, .v-alert--variant-flat {
|
|
17451
|
-
background: rgb(var(--v-theme-
|
|
17452
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
17457
|
+
background: rgb(var(--v-theme-surface-light));
|
|
17458
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
|
17453
17459
|
}
|
|
17454
17460
|
.v-alert--variant-elevated {
|
|
17455
17461
|
box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
@@ -17624,22 +17630,99 @@ html.overflow-y-hidden {
|
|
|
17624
17630
|
text-transform: none;
|
|
17625
17631
|
word-break: normal;
|
|
17626
17632
|
word-wrap: break-word;
|
|
17627
|
-
}.v-
|
|
17633
|
+
}.v-app-bar {
|
|
17628
17634
|
display: flex;
|
|
17629
|
-
|
|
17630
|
-
|
|
17635
|
+
}
|
|
17636
|
+
.v-app-bar.v-toolbar {
|
|
17637
|
+
background: rgb(var(--v-theme-surface));
|
|
17638
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
17639
|
+
}
|
|
17640
|
+
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
|
|
17641
|
+
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));
|
|
17642
|
+
}
|
|
17643
|
+
.v-app-bar:not(.v-toolbar--absolute) {
|
|
17644
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
|
17645
|
+
}.v-autocomplete .v-field .v-text-field__prefix,
|
|
17646
|
+
.v-autocomplete .v-field .v-text-field__suffix,
|
|
17647
|
+
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
|
17648
|
+
cursor: text;
|
|
17649
|
+
}
|
|
17650
|
+
.v-autocomplete .v-field .v-field__input > input {
|
|
17651
|
+
flex: 1 1;
|
|
17652
|
+
}
|
|
17653
|
+
.v-autocomplete .v-field input {
|
|
17654
|
+
min-width: 64px;
|
|
17655
|
+
}
|
|
17656
|
+
.v-autocomplete .v-field:not(.v-field--focused) input {
|
|
17657
|
+
min-width: 0;
|
|
17658
|
+
}
|
|
17659
|
+
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
|
17660
|
+
margin-inline-end: 2px;
|
|
17661
|
+
}
|
|
17662
|
+
.v-autocomplete .v-autocomplete__selection-text {
|
|
17663
|
+
overflow: hidden;
|
|
17664
|
+
text-overflow: ellipsis;
|
|
17665
|
+
white-space: nowrap;
|
|
17631
17666
|
}
|
|
17632
17667
|
|
|
17633
|
-
.v-
|
|
17634
|
-
|
|
17635
|
-
|
|
17636
|
-
|
|
17637
|
-
|
|
17638
|
-
|
|
17639
|
-
|
|
17640
|
-
|
|
17641
|
-
|
|
17642
|
-
|
|
17668
|
+
.v-autocomplete__content {
|
|
17669
|
+
overflow: hidden;
|
|
17670
|
+
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));
|
|
17671
|
+
border-radius: 4px;
|
|
17672
|
+
}
|
|
17673
|
+
.v-autocomplete__mask {
|
|
17674
|
+
background: rgb(var(--v-theme-surface-light));
|
|
17675
|
+
}
|
|
17676
|
+
.v-autocomplete__selection {
|
|
17677
|
+
display: inline-flex;
|
|
17678
|
+
align-items: center;
|
|
17679
|
+
height: 1.5rem;
|
|
17680
|
+
letter-spacing: inherit;
|
|
17681
|
+
line-height: inherit;
|
|
17682
|
+
max-width: calc(100% - 2px - 2px);
|
|
17683
|
+
}
|
|
17684
|
+
.v-autocomplete__selection:first-child {
|
|
17685
|
+
margin-inline-start: 0;
|
|
17686
|
+
}
|
|
17687
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
17688
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
17689
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
17690
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
17691
|
+
top: 0px;
|
|
17692
|
+
}
|
|
17693
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
|
17694
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
17695
|
+
}
|
|
17696
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
|
17697
|
+
opacity: 1;
|
|
17698
|
+
}
|
|
17699
|
+
.v-autocomplete--selecting-index .v-field__input > input {
|
|
17700
|
+
caret-color: transparent;
|
|
17701
|
+
}
|
|
17702
|
+
.v-autocomplete--single.v-text-field .v-field--focused input {
|
|
17703
|
+
flex: 1 1;
|
|
17704
|
+
position: absolute;
|
|
17705
|
+
left: 0;
|
|
17706
|
+
right: 0;
|
|
17707
|
+
width: 100%;
|
|
17708
|
+
padding-inline: inherit;
|
|
17709
|
+
}
|
|
17710
|
+
.v-autocomplete--single .v-field--active input {
|
|
17711
|
+
transition: none;
|
|
17712
|
+
}
|
|
17713
|
+
.v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
|
|
17714
|
+
opacity: 0;
|
|
17715
|
+
}
|
|
17716
|
+
.v-autocomplete--single .v-field--focused .v-autocomplete__selection {
|
|
17717
|
+
opacity: 0;
|
|
17718
|
+
}
|
|
17719
|
+
.v-autocomplete__menu-icon {
|
|
17720
|
+
margin-inline-start: 4px;
|
|
17721
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
17722
|
+
}
|
|
17723
|
+
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
|
17724
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
17725
|
+
transform: rotate(180deg);
|
|
17643
17726
|
}.v-avatar {
|
|
17644
17727
|
flex: none;
|
|
17645
17728
|
align-items: center;
|
|
@@ -17727,89 +17810,8 @@ html.overflow-y-hidden {
|
|
|
17727
17810
|
.v-avatar .v-img {
|
|
17728
17811
|
height: 100%;
|
|
17729
17812
|
width: 100%;
|
|
17730
|
-
}.v-
|
|
17731
|
-
|
|
17732
|
-
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
|
17733
|
-
cursor: text;
|
|
17734
|
-
}
|
|
17735
|
-
.v-autocomplete .v-field .v-field__input > input {
|
|
17736
|
-
flex: 1 1;
|
|
17737
|
-
}
|
|
17738
|
-
.v-autocomplete .v-field input {
|
|
17739
|
-
min-width: 64px;
|
|
17740
|
-
}
|
|
17741
|
-
.v-autocomplete .v-field:not(.v-field--focused) input {
|
|
17742
|
-
min-width: 0;
|
|
17743
|
-
}
|
|
17744
|
-
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
|
17745
|
-
margin-inline-end: 2px;
|
|
17746
|
-
}
|
|
17747
|
-
.v-autocomplete .v-autocomplete__selection-text {
|
|
17748
|
-
overflow: hidden;
|
|
17749
|
-
text-overflow: ellipsis;
|
|
17750
|
-
white-space: nowrap;
|
|
17751
|
-
}
|
|
17752
|
-
|
|
17753
|
-
.v-autocomplete__content {
|
|
17754
|
-
overflow: hidden;
|
|
17755
|
-
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));
|
|
17756
|
-
border-radius: 4px;
|
|
17757
|
-
}
|
|
17758
|
-
.v-autocomplete__mask {
|
|
17759
|
-
background: rgb(var(--v-theme-on-surface-variant));
|
|
17760
|
-
}
|
|
17761
|
-
.v-autocomplete__selection {
|
|
17762
|
-
display: inline-flex;
|
|
17763
|
-
align-items: center;
|
|
17764
|
-
height: 1.5rem;
|
|
17765
|
-
letter-spacing: inherit;
|
|
17766
|
-
line-height: inherit;
|
|
17767
|
-
max-width: calc(100% - 2px - 2px);
|
|
17768
|
-
}
|
|
17769
|
-
.v-autocomplete__selection:first-child {
|
|
17770
|
-
margin-inline-start: 0;
|
|
17771
|
-
}
|
|
17772
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
17773
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
17774
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
17775
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
17776
|
-
top: 0px;
|
|
17777
|
-
}
|
|
17778
|
-
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
|
17779
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
17780
|
-
}
|
|
17781
|
-
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
|
17782
|
-
opacity: 1;
|
|
17783
|
-
}
|
|
17784
|
-
.v-autocomplete--selecting-index .v-field__input > input {
|
|
17785
|
-
caret-color: transparent;
|
|
17786
|
-
}
|
|
17787
|
-
.v-autocomplete--single.v-text-field .v-field--focused input {
|
|
17788
|
-
flex: 1 1;
|
|
17789
|
-
position: absolute;
|
|
17790
|
-
left: 0;
|
|
17791
|
-
right: 0;
|
|
17792
|
-
width: 100%;
|
|
17793
|
-
padding-inline: inherit;
|
|
17794
|
-
}
|
|
17795
|
-
.v-autocomplete--single .v-field--active input {
|
|
17796
|
-
transition: none;
|
|
17797
|
-
}
|
|
17798
|
-
.v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
|
|
17799
|
-
opacity: 0;
|
|
17800
|
-
}
|
|
17801
|
-
.v-autocomplete--single .v-field--focused .v-autocomplete__selection {
|
|
17802
|
-
opacity: 0;
|
|
17803
|
-
}
|
|
17804
|
-
.v-autocomplete__menu-icon {
|
|
17805
|
-
margin-inline-start: 4px;
|
|
17806
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
17807
|
-
}
|
|
17808
|
-
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
|
17809
|
-
opacity: var(--v-high-emphasis-opacity);
|
|
17810
|
-
transform: rotate(180deg);
|
|
17811
|
-
}.v-banner {
|
|
17812
|
-
display: grid;
|
|
17813
|
+
}.v-banner {
|
|
17814
|
+
display: grid;
|
|
17813
17815
|
flex: 1 1;
|
|
17814
17816
|
font-size: 0.875rem;
|
|
17815
17817
|
grid-template-areas: "prepend content actions";
|
|
@@ -18583,6 +18585,19 @@ html.overflow-y-hidden {
|
|
|
18583
18585
|
}
|
|
18584
18586
|
.v-pagination__item--is-active .v-btn__overlay {
|
|
18585
18587
|
opacity: var(--v-border-opacity);
|
|
18588
|
+
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
|
18589
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
18590
|
+
}
|
|
18591
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
|
18592
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18593
|
+
}
|
|
18594
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
|
18595
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18596
|
+
}
|
|
18597
|
+
@supports not selector(:focus-visible) {
|
|
18598
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
|
18599
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
18600
|
+
}
|
|
18586
18601
|
}.v-btn-group {
|
|
18587
18602
|
display: inline-flex;
|
|
18588
18603
|
flex-wrap: nowrap;
|
|
@@ -18935,6 +18950,8 @@ html.overflow-y-hidden {
|
|
|
18935
18950
|
pointer-events: none;
|
|
18936
18951
|
opacity: 0;
|
|
18937
18952
|
transition: opacity 0.2s ease-in-out;
|
|
18953
|
+
}.v-checkbox .v-selection-control {
|
|
18954
|
+
min-height: var(--v-input-control-height);
|
|
18938
18955
|
}.v-carousel {
|
|
18939
18956
|
overflow: hidden;
|
|
18940
18957
|
position: relative;
|
|
@@ -18998,21 +19015,24 @@ html.overflow-y-hidden {
|
|
|
18998
19015
|
flex-direction: column;
|
|
18999
19016
|
height: 100% !important;
|
|
19000
19017
|
width: 50px;
|
|
19001
|
-
}.v-
|
|
19002
|
-
|
|
19003
|
-
|
|
19004
|
-
|
|
19018
|
+
}.v-chip-group {
|
|
19019
|
+
display: flex;
|
|
19020
|
+
max-width: 100%;
|
|
19021
|
+
min-width: 0;
|
|
19022
|
+
overflow-x: auto;
|
|
19023
|
+
padding: 4px 0;
|
|
19005
19024
|
}
|
|
19006
|
-
.v-
|
|
19007
|
-
|
|
19025
|
+
.v-chip-group .v-chip {
|
|
19026
|
+
margin: 4px 8px 4px 0;
|
|
19008
19027
|
}
|
|
19009
|
-
.v-
|
|
19010
|
-
opacity:
|
|
19028
|
+
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
|
19029
|
+
opacity: var(--v-activated-opacity);
|
|
19011
19030
|
}
|
|
19012
|
-
|
|
19013
|
-
|
|
19014
|
-
|
|
19015
|
-
|
|
19031
|
+
|
|
19032
|
+
.v-chip-group--column .v-slide-group__content {
|
|
19033
|
+
white-space: normal;
|
|
19034
|
+
flex-wrap: wrap;
|
|
19035
|
+
max-width: 100%;
|
|
19016
19036
|
}.v-chip {
|
|
19017
19037
|
align-items: center;
|
|
19018
19038
|
cursor: default;
|
|
@@ -19421,44 +19441,6 @@ html.overflow-y-hidden {
|
|
|
19421
19441
|
|
|
19422
19442
|
.v-chip--label {
|
|
19423
19443
|
border-radius: 4px;
|
|
19424
|
-
}.v-chip-group {
|
|
19425
|
-
display: flex;
|
|
19426
|
-
max-width: 100%;
|
|
19427
|
-
min-width: 0;
|
|
19428
|
-
overflow-x: auto;
|
|
19429
|
-
padding: 4px 0;
|
|
19430
|
-
}
|
|
19431
|
-
.v-chip-group .v-chip {
|
|
19432
|
-
margin: 4px 8px 4px 0;
|
|
19433
|
-
}
|
|
19434
|
-
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
|
19435
|
-
opacity: var(--v-activated-opacity);
|
|
19436
|
-
}
|
|
19437
|
-
|
|
19438
|
-
.v-chip-group--column .v-slide-group__content {
|
|
19439
|
-
white-space: normal;
|
|
19440
|
-
flex-wrap: wrap;
|
|
19441
|
-
max-width: 100%;
|
|
19442
|
-
}.v-color-picker {
|
|
19443
|
-
align-self: flex-start;
|
|
19444
|
-
contain: content;
|
|
19445
|
-
}
|
|
19446
|
-
.v-color-picker.v-sheet {
|
|
19447
|
-
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
19448
|
-
border-radius: 4px;
|
|
19449
|
-
}
|
|
19450
|
-
|
|
19451
|
-
.v-color-picker__controls {
|
|
19452
|
-
display: flex;
|
|
19453
|
-
flex-direction: column;
|
|
19454
|
-
padding: 16px;
|
|
19455
|
-
}
|
|
19456
|
-
|
|
19457
|
-
.v-color-picker--flat {
|
|
19458
|
-
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));
|
|
19459
|
-
}
|
|
19460
|
-
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
|
19461
|
-
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));
|
|
19462
19444
|
}.v-counter {
|
|
19463
19445
|
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
19464
19446
|
flex: 0 1 auto;
|
|
@@ -20136,6 +20118,107 @@ html.overflow-y-hidden {
|
|
|
20136
20118
|
.offset-xxl-11 {
|
|
20137
20119
|
margin-inline-start: 91.6666666667%;
|
|
20138
20120
|
}
|
|
20121
|
+
}.v-combobox .v-field .v-text-field__prefix,
|
|
20122
|
+
.v-combobox .v-field .v-text-field__suffix,
|
|
20123
|
+
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
|
20124
|
+
cursor: text;
|
|
20125
|
+
}
|
|
20126
|
+
.v-combobox .v-field .v-field__input > input {
|
|
20127
|
+
flex: 1 1;
|
|
20128
|
+
}
|
|
20129
|
+
.v-combobox .v-field input {
|
|
20130
|
+
min-width: 64px;
|
|
20131
|
+
}
|
|
20132
|
+
.v-combobox .v-field:not(.v-field--focused) input {
|
|
20133
|
+
min-width: 0;
|
|
20134
|
+
}
|
|
20135
|
+
.v-combobox .v-field--dirty .v-combobox__selection {
|
|
20136
|
+
margin-inline-end: 2px;
|
|
20137
|
+
}
|
|
20138
|
+
.v-combobox .v-combobox__selection-text {
|
|
20139
|
+
overflow: hidden;
|
|
20140
|
+
text-overflow: ellipsis;
|
|
20141
|
+
white-space: nowrap;
|
|
20142
|
+
}
|
|
20143
|
+
|
|
20144
|
+
.v-combobox__content {
|
|
20145
|
+
overflow: hidden;
|
|
20146
|
+
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));
|
|
20147
|
+
border-radius: 4px;
|
|
20148
|
+
}
|
|
20149
|
+
.v-combobox__mask {
|
|
20150
|
+
background: rgb(var(--v-theme-surface-light));
|
|
20151
|
+
}
|
|
20152
|
+
.v-combobox__selection {
|
|
20153
|
+
display: inline-flex;
|
|
20154
|
+
align-items: center;
|
|
20155
|
+
height: 1.5rem;
|
|
20156
|
+
letter-spacing: inherit;
|
|
20157
|
+
line-height: inherit;
|
|
20158
|
+
max-width: calc(100% - 2px - 2px);
|
|
20159
|
+
}
|
|
20160
|
+
.v-combobox__selection:first-child {
|
|
20161
|
+
margin-inline-start: 0;
|
|
20162
|
+
}
|
|
20163
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
20164
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
20165
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
20166
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
20167
|
+
top: 0px;
|
|
20168
|
+
}
|
|
20169
|
+
.v-combobox--selecting-index .v-combobox__selection {
|
|
20170
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
20171
|
+
}
|
|
20172
|
+
.v-combobox--selecting-index .v-combobox__selection--selected {
|
|
20173
|
+
opacity: 1;
|
|
20174
|
+
}
|
|
20175
|
+
.v-combobox--selecting-index .v-field__input > input {
|
|
20176
|
+
caret-color: transparent;
|
|
20177
|
+
}
|
|
20178
|
+
.v-combobox--single.v-text-field .v-field--focused input {
|
|
20179
|
+
flex: 1 1;
|
|
20180
|
+
position: absolute;
|
|
20181
|
+
left: 0;
|
|
20182
|
+
right: 0;
|
|
20183
|
+
width: 100%;
|
|
20184
|
+
padding-inline: inherit;
|
|
20185
|
+
}
|
|
20186
|
+
.v-combobox--single .v-field--active input {
|
|
20187
|
+
transition: none;
|
|
20188
|
+
}
|
|
20189
|
+
.v-combobox--single .v-field--dirty:not(.v-field--focused) input {
|
|
20190
|
+
opacity: 0;
|
|
20191
|
+
}
|
|
20192
|
+
.v-combobox--single .v-field--focused .v-combobox__selection {
|
|
20193
|
+
opacity: 0;
|
|
20194
|
+
}
|
|
20195
|
+
.v-combobox__menu-icon {
|
|
20196
|
+
margin-inline-start: 4px;
|
|
20197
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
20198
|
+
}
|
|
20199
|
+
.v-combobox--active-menu .v-combobox__menu-icon {
|
|
20200
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
20201
|
+
transform: rotate(180deg);
|
|
20202
|
+
}.v-color-picker {
|
|
20203
|
+
align-self: flex-start;
|
|
20204
|
+
contain: content;
|
|
20205
|
+
}
|
|
20206
|
+
.v-color-picker.v-sheet {
|
|
20207
|
+
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
20208
|
+
border-radius: 4px;
|
|
20209
|
+
}
|
|
20210
|
+
|
|
20211
|
+
.v-color-picker__controls {
|
|
20212
|
+
display: flex;
|
|
20213
|
+
flex-direction: column;
|
|
20214
|
+
padding: 16px;
|
|
20215
|
+
}
|
|
20216
|
+
|
|
20217
|
+
.v-color-picker--flat {
|
|
20218
|
+
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));
|
|
20219
|
+
}
|
|
20220
|
+
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
|
20221
|
+
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));
|
|
20139
20222
|
}.v-data-table {
|
|
20140
20223
|
width: 100%;
|
|
20141
20224
|
}
|
|
@@ -20303,143 +20386,6 @@ html.overflow-y-hidden {
|
|
|
20303
20386
|
|
|
20304
20387
|
.v-data-table-footer__page {
|
|
20305
20388
|
padding: 0 8px;
|
|
20306
|
-
}.v-combobox .v-field .v-text-field__prefix,
|
|
20307
|
-
.v-combobox .v-field .v-text-field__suffix,
|
|
20308
|
-
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
|
20309
|
-
cursor: text;
|
|
20310
|
-
}
|
|
20311
|
-
.v-combobox .v-field .v-field__input > input {
|
|
20312
|
-
flex: 1 1;
|
|
20313
|
-
}
|
|
20314
|
-
.v-combobox .v-field input {
|
|
20315
|
-
min-width: 64px;
|
|
20316
|
-
}
|
|
20317
|
-
.v-combobox .v-field:not(.v-field--focused) input {
|
|
20318
|
-
min-width: 0;
|
|
20319
|
-
}
|
|
20320
|
-
.v-combobox .v-field--dirty .v-combobox__selection {
|
|
20321
|
-
margin-inline-end: 2px;
|
|
20322
|
-
}
|
|
20323
|
-
.v-combobox .v-combobox__selection-text {
|
|
20324
|
-
overflow: hidden;
|
|
20325
|
-
text-overflow: ellipsis;
|
|
20326
|
-
white-space: nowrap;
|
|
20327
|
-
}
|
|
20328
|
-
|
|
20329
|
-
.v-combobox__content {
|
|
20330
|
-
overflow: hidden;
|
|
20331
|
-
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));
|
|
20332
|
-
border-radius: 4px;
|
|
20333
|
-
}
|
|
20334
|
-
.v-combobox__mask {
|
|
20335
|
-
background: rgb(var(--v-theme-on-surface-variant));
|
|
20336
|
-
}
|
|
20337
|
-
.v-combobox__selection {
|
|
20338
|
-
display: inline-flex;
|
|
20339
|
-
align-items: center;
|
|
20340
|
-
height: 1.5rem;
|
|
20341
|
-
letter-spacing: inherit;
|
|
20342
|
-
line-height: inherit;
|
|
20343
|
-
max-width: calc(100% - 2px - 2px);
|
|
20344
|
-
}
|
|
20345
|
-
.v-combobox__selection:first-child {
|
|
20346
|
-
margin-inline-start: 0;
|
|
20347
|
-
}
|
|
20348
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
20349
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
20350
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
20351
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
20352
|
-
top: 0px;
|
|
20353
|
-
}
|
|
20354
|
-
.v-combobox--selecting-index .v-combobox__selection {
|
|
20355
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
20356
|
-
}
|
|
20357
|
-
.v-combobox--selecting-index .v-combobox__selection--selected {
|
|
20358
|
-
opacity: 1;
|
|
20359
|
-
}
|
|
20360
|
-
.v-combobox--selecting-index .v-field__input > input {
|
|
20361
|
-
caret-color: transparent;
|
|
20362
|
-
}
|
|
20363
|
-
.v-combobox--single.v-text-field .v-field--focused input {
|
|
20364
|
-
flex: 1 1;
|
|
20365
|
-
position: absolute;
|
|
20366
|
-
left: 0;
|
|
20367
|
-
right: 0;
|
|
20368
|
-
width: 100%;
|
|
20369
|
-
padding-inline: inherit;
|
|
20370
|
-
}
|
|
20371
|
-
.v-combobox--single .v-field--active input {
|
|
20372
|
-
transition: none;
|
|
20373
|
-
}
|
|
20374
|
-
.v-combobox--single .v-field--dirty:not(.v-field--focused) input {
|
|
20375
|
-
opacity: 0;
|
|
20376
|
-
}
|
|
20377
|
-
.v-combobox--single .v-field--focused .v-combobox__selection {
|
|
20378
|
-
opacity: 0;
|
|
20379
|
-
}
|
|
20380
|
-
.v-combobox__menu-icon {
|
|
20381
|
-
margin-inline-start: 4px;
|
|
20382
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
20383
|
-
}
|
|
20384
|
-
.v-combobox--active-menu .v-combobox__menu-icon {
|
|
20385
|
-
opacity: var(--v-high-emphasis-opacity);
|
|
20386
|
-
transform: rotate(180deg);
|
|
20387
|
-
}.v-date-picker-controls {
|
|
20388
|
-
display: flex;
|
|
20389
|
-
align-items: center;
|
|
20390
|
-
justify-content: space-between;
|
|
20391
|
-
font-size: 0.875rem;
|
|
20392
|
-
padding-top: 4px;
|
|
20393
|
-
padding-bottom: 4px;
|
|
20394
|
-
padding-inline-start: 6px;
|
|
20395
|
-
padding-inline-end: 12px;
|
|
20396
|
-
}
|
|
20397
|
-
.v-date-picker-controls > .v-btn:first-child {
|
|
20398
|
-
text-transform: none;
|
|
20399
|
-
font-weight: 400;
|
|
20400
|
-
line-height: initial;
|
|
20401
|
-
letter-spacing: initial;
|
|
20402
|
-
}
|
|
20403
|
-
.v-date-picker-controls--variant-classic {
|
|
20404
|
-
padding-inline-start: 12px;
|
|
20405
|
-
}
|
|
20406
|
-
.v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
|
|
20407
|
-
opacity: 0.7;
|
|
20408
|
-
}
|
|
20409
|
-
.v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
|
|
20410
|
-
cursor: pointer;
|
|
20411
|
-
}
|
|
20412
|
-
.v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
|
|
20413
|
-
opacity: 1;
|
|
20414
|
-
}
|
|
20415
|
-
.v-date-picker-controls .v-btn:last-child {
|
|
20416
|
-
margin-inline-start: 4px;
|
|
20417
|
-
}
|
|
20418
|
-
.v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
|
|
20419
|
-
transform: rotate(180deg);
|
|
20420
|
-
}
|
|
20421
|
-
|
|
20422
|
-
.v-date-picker-controls__date {
|
|
20423
|
-
margin-inline-end: 4px;
|
|
20424
|
-
}
|
|
20425
|
-
.v-date-picker-controls--variant-classic .v-date-picker-controls__date {
|
|
20426
|
-
margin: auto;
|
|
20427
|
-
text-align: center;
|
|
20428
|
-
}
|
|
20429
|
-
|
|
20430
|
-
.v-date-picker-controls__month {
|
|
20431
|
-
display: flex;
|
|
20432
|
-
}
|
|
20433
|
-
.v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
|
|
20434
|
-
flex-direction: row-reverse;
|
|
20435
|
-
}
|
|
20436
|
-
|
|
20437
|
-
.v-date-picker-controls--variant-classic .v-date-picker-controls__month {
|
|
20438
|
-
flex: 1 0 auto;
|
|
20439
|
-
}
|
|
20440
|
-
|
|
20441
|
-
.v-date-picker__title {
|
|
20442
|
-
display: inline-block;
|
|
20443
20389
|
}.v-date-picker__input {
|
|
20444
20390
|
padding-top: 16px;
|
|
20445
20391
|
padding-left: 24px;
|
|
@@ -20523,26 +20469,77 @@ html.overflow-y-hidden {
|
|
|
20523
20469
|
.date-picker-header-reverse-transition-leave-to {
|
|
20524
20470
|
opacity: 0;
|
|
20525
20471
|
transform: translate(0, 100%);
|
|
20526
|
-
}.v-date-picker-
|
|
20472
|
+
}.v-date-picker-controls {
|
|
20473
|
+
display: flex;
|
|
20474
|
+
align-items: center;
|
|
20475
|
+
justify-content: space-between;
|
|
20476
|
+
font-size: 0.875rem;
|
|
20477
|
+
padding-top: 4px;
|
|
20478
|
+
padding-bottom: 4px;
|
|
20479
|
+
padding-inline-start: 6px;
|
|
20480
|
+
padding-inline-end: 12px;
|
|
20481
|
+
}
|
|
20482
|
+
.v-date-picker-controls > .v-btn:first-child {
|
|
20483
|
+
text-transform: none;
|
|
20484
|
+
font-weight: 400;
|
|
20485
|
+
line-height: initial;
|
|
20486
|
+
letter-spacing: initial;
|
|
20487
|
+
}
|
|
20488
|
+
.v-date-picker-controls--variant-classic {
|
|
20489
|
+
padding-inline-start: 12px;
|
|
20490
|
+
}
|
|
20491
|
+
.v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
|
|
20492
|
+
opacity: 0.7;
|
|
20493
|
+
}
|
|
20494
|
+
.v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
|
|
20495
|
+
cursor: pointer;
|
|
20496
|
+
}
|
|
20497
|
+
.v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
|
|
20498
|
+
opacity: 1;
|
|
20499
|
+
}
|
|
20500
|
+
.v-date-picker-controls .v-btn:last-child {
|
|
20501
|
+
margin-inline-start: 4px;
|
|
20502
|
+
}
|
|
20503
|
+
.v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
|
|
20504
|
+
transform: rotate(180deg);
|
|
20505
|
+
}
|
|
20506
|
+
|
|
20507
|
+
.v-date-picker-controls__date {
|
|
20508
|
+
margin-inline-end: 4px;
|
|
20509
|
+
}
|
|
20510
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__date {
|
|
20511
|
+
margin: auto;
|
|
20512
|
+
text-align: center;
|
|
20513
|
+
}
|
|
20514
|
+
|
|
20515
|
+
.v-date-picker-controls__month {
|
|
20516
|
+
display: flex;
|
|
20517
|
+
}
|
|
20518
|
+
.v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
|
|
20519
|
+
flex-direction: row-reverse;
|
|
20520
|
+
}
|
|
20521
|
+
|
|
20522
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__month {
|
|
20523
|
+
flex: 1 0 auto;
|
|
20524
|
+
}
|
|
20525
|
+
|
|
20526
|
+
.v-date-picker__title {
|
|
20527
|
+
display: inline-block;
|
|
20528
|
+
}.v-date-picker-years {
|
|
20527
20529
|
height: 320px;
|
|
20528
20530
|
overflow-y: scroll;
|
|
20529
20531
|
}
|
|
20530
20532
|
|
|
20531
|
-
.v-date-picker-
|
|
20532
|
-
align-items: center;
|
|
20533
|
+
.v-date-picker-years__content {
|
|
20533
20534
|
display: grid;
|
|
20534
20535
|
flex: 1 1;
|
|
20535
|
-
height: inherit;
|
|
20536
20536
|
justify-content: space-around;
|
|
20537
|
-
grid-template-columns: repeat(
|
|
20538
|
-
|
|
20539
|
-
padding-inline
|
|
20540
|
-
padding-inline-end: 36px;
|
|
20537
|
+
grid-template-columns: repeat(3, 1fr);
|
|
20538
|
+
gap: 8px 24px;
|
|
20539
|
+
padding-inline: 36px;
|
|
20541
20540
|
}
|
|
20542
|
-
.v-date-picker-
|
|
20543
|
-
|
|
20544
|
-
padding-inline-start: 8px;
|
|
20545
|
-
padding-inline-end: 8px;
|
|
20541
|
+
.v-date-picker-years__content .v-btn {
|
|
20542
|
+
padding-inline: 8px;
|
|
20546
20543
|
}.v-date-picker-month {
|
|
20547
20544
|
display: flex;
|
|
20548
20545
|
justify-content: center;
|
|
@@ -20592,21 +20589,26 @@ html.overflow-y-hidden {
|
|
|
20592
20589
|
|
|
20593
20590
|
.v-date-picker-month__day--hide-adjacent {
|
|
20594
20591
|
opacity: 0;
|
|
20595
|
-
}.v-date-picker-
|
|
20592
|
+
}.v-date-picker-months {
|
|
20596
20593
|
height: 320px;
|
|
20597
20594
|
overflow-y: scroll;
|
|
20598
20595
|
}
|
|
20599
20596
|
|
|
20600
|
-
.v-date-picker-
|
|
20597
|
+
.v-date-picker-months__content {
|
|
20598
|
+
align-items: center;
|
|
20601
20599
|
display: grid;
|
|
20602
20600
|
flex: 1 1;
|
|
20601
|
+
height: inherit;
|
|
20603
20602
|
justify-content: space-around;
|
|
20604
|
-
grid-template-columns: repeat(
|
|
20605
|
-
gap:
|
|
20606
|
-
padding-inline: 36px;
|
|
20603
|
+
grid-template-columns: repeat(2, 1fr);
|
|
20604
|
+
grid-gap: 4px 24px;
|
|
20605
|
+
padding-inline-start: 36px;
|
|
20606
|
+
padding-inline-end: 36px;
|
|
20607
20607
|
}
|
|
20608
|
-
.v-date-picker-
|
|
20609
|
-
|
|
20608
|
+
.v-date-picker-months__content .v-btn {
|
|
20609
|
+
text-transform: none;
|
|
20610
|
+
padding-inline-start: 8px;
|
|
20611
|
+
padding-inline-end: 8px;
|
|
20610
20612
|
}.v-dialog {
|
|
20611
20613
|
align-items: center;
|
|
20612
20614
|
justify-content: center;
|
|
@@ -20894,6 +20896,35 @@ html.overflow-y-hidden {
|
|
|
20894
20896
|
}
|
|
20895
20897
|
.v-expansion-panels--variant-inset > .v-expansion-panel--active {
|
|
20896
20898
|
max-width: calc(100% - 32px);
|
|
20899
|
+
}.v-divider {
|
|
20900
|
+
display: block;
|
|
20901
|
+
flex: 1 1 100%;
|
|
20902
|
+
height: 0px;
|
|
20903
|
+
max-height: 0px;
|
|
20904
|
+
opacity: var(--v-border-opacity);
|
|
20905
|
+
transition: inherit;
|
|
20906
|
+
border-style: solid;
|
|
20907
|
+
border-width: thin 0 0 0;
|
|
20908
|
+
}
|
|
20909
|
+
.v-divider--vertical {
|
|
20910
|
+
align-self: stretch;
|
|
20911
|
+
border-width: 0 thin 0 0;
|
|
20912
|
+
display: inline-flex;
|
|
20913
|
+
height: inherit;
|
|
20914
|
+
margin-left: -1px;
|
|
20915
|
+
max-height: 100%;
|
|
20916
|
+
max-width: 0px;
|
|
20917
|
+
vertical-align: text-bottom;
|
|
20918
|
+
width: 0px;
|
|
20919
|
+
}
|
|
20920
|
+
.v-divider--inset:not(.v-divider--vertical) {
|
|
20921
|
+
max-width: calc(100% - 72px);
|
|
20922
|
+
margin-inline-start: 72px;
|
|
20923
|
+
}
|
|
20924
|
+
.v-divider--inset.v-divider--vertical {
|
|
20925
|
+
margin-bottom: 8px;
|
|
20926
|
+
margin-top: 8px;
|
|
20927
|
+
max-height: calc(100% - 16px);
|
|
20897
20928
|
}/* region INPUT */
|
|
20898
20929
|
.v-field {
|
|
20899
20930
|
display: grid;
|
|
@@ -21443,35 +21474,26 @@ textarea.v-field__input::placeholder {
|
|
|
21443
21474
|
opacity: 0;
|
|
21444
21475
|
}
|
|
21445
21476
|
|
|
21446
|
-
/* endregion */.v-
|
|
21447
|
-
|
|
21448
|
-
|
|
21449
|
-
|
|
21450
|
-
|
|
21451
|
-
opacity: var(--v-border-opacity);
|
|
21452
|
-
transition: inherit;
|
|
21453
|
-
border-style: solid;
|
|
21454
|
-
border-width: thin 0 0 0;
|
|
21477
|
+
/* endregion */.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
21478
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
21479
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
21480
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
21481
|
+
top: 0px;
|
|
21455
21482
|
}
|
|
21456
|
-
.v-
|
|
21457
|
-
|
|
21458
|
-
|
|
21459
|
-
|
|
21460
|
-
|
|
21461
|
-
|
|
21462
|
-
|
|
21463
|
-
|
|
21464
|
-
vertical-align: text-bottom;
|
|
21465
|
-
width: 0px;
|
|
21483
|
+
.v-file-input input[type=file] {
|
|
21484
|
+
height: 100%;
|
|
21485
|
+
left: 0;
|
|
21486
|
+
opacity: 0;
|
|
21487
|
+
position: absolute;
|
|
21488
|
+
top: 0;
|
|
21489
|
+
width: 100%;
|
|
21490
|
+
z-index: 1;
|
|
21466
21491
|
}
|
|
21467
|
-
.v-
|
|
21468
|
-
|
|
21469
|
-
margin-inline-start: 72px;
|
|
21492
|
+
.v-file-input .v-input__details {
|
|
21493
|
+
padding-inline: 16px;
|
|
21470
21494
|
}
|
|
21471
|
-
.v-
|
|
21472
|
-
|
|
21473
|
-
margin-top: 8px;
|
|
21474
|
-
max-height: calc(100% - 16px);
|
|
21495
|
+
.v-input--plain-underlined.v-file-input .v-input__details {
|
|
21496
|
+
padding-inline: 0;
|
|
21475
21497
|
}.v-footer {
|
|
21476
21498
|
align-items: center;
|
|
21477
21499
|
display: flex;
|
|
@@ -21536,51 +21558,6 @@ textarea.v-field__input::placeholder {
|
|
|
21536
21558
|
|
|
21537
21559
|
.v-img__gradient {
|
|
21538
21560
|
background-repeat: no-repeat;
|
|
21539
|
-
}.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
21540
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
21541
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
21542
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
21543
|
-
top: 0px;
|
|
21544
|
-
}
|
|
21545
|
-
.v-file-input input[type=file] {
|
|
21546
|
-
height: 100%;
|
|
21547
|
-
left: 0;
|
|
21548
|
-
opacity: 0;
|
|
21549
|
-
position: absolute;
|
|
21550
|
-
top: 0;
|
|
21551
|
-
width: 100%;
|
|
21552
|
-
z-index: 1;
|
|
21553
|
-
}
|
|
21554
|
-
.v-file-input .v-input__details {
|
|
21555
|
-
padding-inline: 16px;
|
|
21556
|
-
}
|
|
21557
|
-
.v-input--plain-underlined.v-file-input .v-input__details {
|
|
21558
|
-
padding-inline: 0;
|
|
21559
|
-
}.v-infinite-scroll--horizontal {
|
|
21560
|
-
display: flex;
|
|
21561
|
-
flex-direction: row;
|
|
21562
|
-
overflow-x: auto;
|
|
21563
|
-
}
|
|
21564
|
-
.v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
|
|
21565
|
-
height: 100%;
|
|
21566
|
-
width: 1px;
|
|
21567
|
-
}
|
|
21568
|
-
|
|
21569
|
-
.v-infinite-scroll--vertical {
|
|
21570
|
-
display: flex;
|
|
21571
|
-
flex-direction: column;
|
|
21572
|
-
overflow-y: auto;
|
|
21573
|
-
}
|
|
21574
|
-
.v-infinite-scroll--vertical .v-infinite-scroll-intersect {
|
|
21575
|
-
height: 1px;
|
|
21576
|
-
width: 100%;
|
|
21577
|
-
}
|
|
21578
|
-
|
|
21579
|
-
.v-infinite-scroll__side {
|
|
21580
|
-
align-items: center;
|
|
21581
|
-
display: flex;
|
|
21582
|
-
justify-content: center;
|
|
21583
|
-
padding: 8px;
|
|
21584
21561
|
}.v-icon {
|
|
21585
21562
|
--v-icon-size-multiplier: 1;
|
|
21586
21563
|
align-items: center;
|
|
@@ -21630,11 +21607,31 @@ textarea.v-field__input::placeholder {
|
|
|
21630
21607
|
|
|
21631
21608
|
.v-icon--end {
|
|
21632
21609
|
margin-inline-start: 8px;
|
|
21633
|
-
}.v-
|
|
21634
|
-
|
|
21635
|
-
|
|
21636
|
-
|
|
21637
|
-
|
|
21610
|
+
}.v-infinite-scroll--horizontal {
|
|
21611
|
+
display: flex;
|
|
21612
|
+
flex-direction: row;
|
|
21613
|
+
overflow-x: auto;
|
|
21614
|
+
}
|
|
21615
|
+
.v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
|
|
21616
|
+
height: 100%;
|
|
21617
|
+
width: 1px;
|
|
21618
|
+
}
|
|
21619
|
+
|
|
21620
|
+
.v-infinite-scroll--vertical {
|
|
21621
|
+
display: flex;
|
|
21622
|
+
flex-direction: column;
|
|
21623
|
+
overflow-y: auto;
|
|
21624
|
+
}
|
|
21625
|
+
.v-infinite-scroll--vertical .v-infinite-scroll-intersect {
|
|
21626
|
+
height: 1px;
|
|
21627
|
+
width: 100%;
|
|
21628
|
+
}
|
|
21629
|
+
|
|
21630
|
+
.v-infinite-scroll__side {
|
|
21631
|
+
align-items: center;
|
|
21632
|
+
display: flex;
|
|
21633
|
+
justify-content: center;
|
|
21634
|
+
padding: 8px;
|
|
21638
21635
|
}.v-input {
|
|
21639
21636
|
display: grid;
|
|
21640
21637
|
flex: 1 1 auto;
|
|
@@ -21777,6 +21774,11 @@ textarea.v-field__input::placeholder {
|
|
|
21777
21774
|
|
|
21778
21775
|
.v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
|
|
21779
21776
|
padding-top: calc(var(--v-input-padding-top) + 0px);
|
|
21777
|
+
}.v-item-group {
|
|
21778
|
+
flex: 0 1 auto;
|
|
21779
|
+
max-width: 100%;
|
|
21780
|
+
position: relative;
|
|
21781
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
21780
21782
|
}.v-label {
|
|
21781
21783
|
align-items: center;
|
|
21782
21784
|
color: inherit;
|
|
@@ -21792,6 +21794,21 @@ textarea.v-field__input::placeholder {
|
|
|
21792
21794
|
|
|
21793
21795
|
.v-label--clickable {
|
|
21794
21796
|
cursor: pointer;
|
|
21797
|
+
}.v-layout-item {
|
|
21798
|
+
position: absolute;
|
|
21799
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
21800
|
+
}
|
|
21801
|
+
|
|
21802
|
+
.v-layout-item--absolute {
|
|
21803
|
+
position: absolute;
|
|
21804
|
+
}.v-layout {
|
|
21805
|
+
--v-scrollbar-offset: 0px;
|
|
21806
|
+
display: flex;
|
|
21807
|
+
flex: 1 1 auto;
|
|
21808
|
+
}
|
|
21809
|
+
.v-layout--full-height {
|
|
21810
|
+
--v-scrollbar-offset: inherit;
|
|
21811
|
+
height: 100%;
|
|
21795
21812
|
}.v-list {
|
|
21796
21813
|
overflow: auto;
|
|
21797
21814
|
padding: 8px 0;
|
|
@@ -22330,51 +22347,8 @@ textarea.v-field__input::placeholder {
|
|
|
22330
22347
|
}
|
|
22331
22348
|
.v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
|
|
22332
22349
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
22333
|
-
}.v-layout-item {
|
|
22334
|
-
position: absolute;
|
|
22335
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22336
|
-
}
|
|
22337
|
-
|
|
22338
|
-
.v-layout-item--absolute {
|
|
22339
|
-
position: absolute;
|
|
22340
|
-
}.v-layout {
|
|
22341
|
-
--v-scrollbar-offset: 0px;
|
|
22342
|
-
display: flex;
|
|
22343
|
-
flex: 1 1 auto;
|
|
22344
|
-
}
|
|
22345
|
-
.v-layout--full-height {
|
|
22346
|
-
--v-scrollbar-offset: inherit;
|
|
22347
|
-
height: 100%;
|
|
22348
22350
|
}.v-locale-provider {
|
|
22349
22351
|
display: contents;
|
|
22350
|
-
}.v-main {
|
|
22351
|
-
flex: 1 0 auto;
|
|
22352
|
-
max-width: 100%;
|
|
22353
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22354
|
-
padding-left: var(--v-layout-left);
|
|
22355
|
-
padding-right: var(--v-layout-right);
|
|
22356
|
-
padding-top: var(--v-layout-top);
|
|
22357
|
-
padding-bottom: var(--v-layout-bottom);
|
|
22358
|
-
}
|
|
22359
|
-
.v-main__scroller {
|
|
22360
|
-
max-width: 100%;
|
|
22361
|
-
position: relative;
|
|
22362
|
-
}
|
|
22363
|
-
.v-main--scrollable {
|
|
22364
|
-
display: flex;
|
|
22365
|
-
position: absolute;
|
|
22366
|
-
top: 0;
|
|
22367
|
-
left: 0;
|
|
22368
|
-
width: 100%;
|
|
22369
|
-
height: 100%;
|
|
22370
|
-
}
|
|
22371
|
-
.v-main--scrollable > .v-main__scroller {
|
|
22372
|
-
flex: 1 1 auto;
|
|
22373
|
-
overflow-y: auto;
|
|
22374
|
-
--v-layout-left: 0px;
|
|
22375
|
-
--v-layout-right: 0px;
|
|
22376
|
-
--v-layout-top: 0px;
|
|
22377
|
-
--v-layout-bottom: 0px;
|
|
22378
22352
|
}.v-menu > .v-overlay__content {
|
|
22379
22353
|
display: flex;
|
|
22380
22354
|
flex-direction: column;
|
|
@@ -22388,22 +22362,6 @@ textarea.v-field__input::placeholder {
|
|
|
22388
22362
|
overflow: auto;
|
|
22389
22363
|
height: 100%;
|
|
22390
22364
|
box-shadow: 0px 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
22391
|
-
}.v-messages {
|
|
22392
|
-
flex: 1 1 auto;
|
|
22393
|
-
font-size: 12px;
|
|
22394
|
-
min-height: 14px;
|
|
22395
|
-
min-width: 1px;
|
|
22396
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
22397
|
-
position: relative;
|
|
22398
|
-
}
|
|
22399
|
-
.v-messages__message {
|
|
22400
|
-
line-height: 12px;
|
|
22401
|
-
word-break: break-word;
|
|
22402
|
-
overflow-wrap: break-word;
|
|
22403
|
-
word-wrap: break-word;
|
|
22404
|
-
-webkit-hyphens: auto;
|
|
22405
|
-
hyphens: auto;
|
|
22406
|
-
transition-duration: 150ms;
|
|
22407
22365
|
}.v-navigation-drawer {
|
|
22408
22366
|
-webkit-overflow-scrolling: touch;
|
|
22409
22367
|
background: rgb(var(--v-theme-surface));
|
|
@@ -22502,6 +22460,34 @@ textarea.v-field__input::placeholder {
|
|
|
22502
22460
|
.v-navigation-drawer__append {
|
|
22503
22461
|
flex: none;
|
|
22504
22462
|
overflow: hidden;
|
|
22463
|
+
}.v-main {
|
|
22464
|
+
flex: 1 0 auto;
|
|
22465
|
+
max-width: 100%;
|
|
22466
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22467
|
+
padding-left: var(--v-layout-left);
|
|
22468
|
+
padding-right: var(--v-layout-right);
|
|
22469
|
+
padding-top: var(--v-layout-top);
|
|
22470
|
+
padding-bottom: var(--v-layout-bottom);
|
|
22471
|
+
}
|
|
22472
|
+
.v-main__scroller {
|
|
22473
|
+
max-width: 100%;
|
|
22474
|
+
position: relative;
|
|
22475
|
+
}
|
|
22476
|
+
.v-main--scrollable {
|
|
22477
|
+
display: flex;
|
|
22478
|
+
position: absolute;
|
|
22479
|
+
top: 0;
|
|
22480
|
+
left: 0;
|
|
22481
|
+
width: 100%;
|
|
22482
|
+
height: 100%;
|
|
22483
|
+
}
|
|
22484
|
+
.v-main--scrollable > .v-main__scroller {
|
|
22485
|
+
flex: 1 1 auto;
|
|
22486
|
+
overflow-y: auto;
|
|
22487
|
+
--v-layout-left: 0px;
|
|
22488
|
+
--v-layout-right: 0px;
|
|
22489
|
+
--v-layout-top: 0px;
|
|
22490
|
+
--v-layout-bottom: 0px;
|
|
22505
22491
|
}.v-otp-input {
|
|
22506
22492
|
border-radius: 4px;
|
|
22507
22493
|
align-items: center;
|
|
@@ -22558,14 +22544,28 @@ textarea.v-field__input::placeholder {
|
|
|
22558
22544
|
}
|
|
22559
22545
|
.v-otp-input__loader .v-progress-linear {
|
|
22560
22546
|
position: absolute;
|
|
22561
|
-
}.v-
|
|
22562
|
-
|
|
22563
|
-
|
|
22564
|
-
|
|
22565
|
-
width:
|
|
22547
|
+
}.v-messages {
|
|
22548
|
+
flex: 1 1 auto;
|
|
22549
|
+
font-size: 12px;
|
|
22550
|
+
min-height: 14px;
|
|
22551
|
+
min-width: 1px;
|
|
22552
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
22553
|
+
position: relative;
|
|
22566
22554
|
}
|
|
22567
|
-
.v-
|
|
22568
|
-
|
|
22555
|
+
.v-messages__message {
|
|
22556
|
+
line-height: 12px;
|
|
22557
|
+
word-break: break-word;
|
|
22558
|
+
overflow-wrap: break-word;
|
|
22559
|
+
word-wrap: break-word;
|
|
22560
|
+
-webkit-hyphens: auto;
|
|
22561
|
+
hyphens: auto;
|
|
22562
|
+
transition-duration: 150ms;
|
|
22563
|
+
}.v-parallax {
|
|
22564
|
+
position: relative;
|
|
22565
|
+
overflow: hidden;
|
|
22566
|
+
}
|
|
22567
|
+
.v-parallax--active > .v-img__img {
|
|
22568
|
+
will-change: transform;
|
|
22569
22569
|
}.v-overlay-container {
|
|
22570
22570
|
contain: layout;
|
|
22571
22571
|
left: 0;
|
|
@@ -22629,14 +22629,16 @@ html.v-overlay-scroll-blocked {
|
|
|
22629
22629
|
|
|
22630
22630
|
.v-overlay--scroll-blocked {
|
|
22631
22631
|
padding-inline-end: var(--v-scrollbar-offset);
|
|
22632
|
-
}.v-
|
|
22633
|
-
|
|
22634
|
-
|
|
22635
|
-
|
|
22636
|
-
|
|
22637
|
-
|
|
22638
|
-
|
|
22639
|
-
|
|
22632
|
+
}.v-pagination__list {
|
|
22633
|
+
display: inline-flex;
|
|
22634
|
+
list-style-type: none;
|
|
22635
|
+
justify-content: center;
|
|
22636
|
+
width: 100%;
|
|
22637
|
+
}
|
|
22638
|
+
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
|
22639
|
+
margin: 0.3rem;
|
|
22640
|
+
}.v-progress-circular {
|
|
22641
|
+
align-items: center;
|
|
22640
22642
|
display: inline-flex;
|
|
22641
22643
|
justify-content: center;
|
|
22642
22644
|
position: relative;
|
|
@@ -22737,6 +22739,18 @@ html.v-overlay-scroll-blocked {
|
|
|
22737
22739
|
100% {
|
|
22738
22740
|
transform: rotate(270deg);
|
|
22739
22741
|
}
|
|
22742
|
+
}.v-radio-group > .v-input__control {
|
|
22743
|
+
flex-direction: column;
|
|
22744
|
+
}
|
|
22745
|
+
.v-radio-group > .v-input__control > .v-label {
|
|
22746
|
+
margin-inline-start: 16px;
|
|
22747
|
+
}
|
|
22748
|
+
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
|
22749
|
+
padding-inline-start: 6px;
|
|
22750
|
+
margin-top: 8px;
|
|
22751
|
+
}
|
|
22752
|
+
.v-radio-group .v-input__details {
|
|
22753
|
+
padding-inline: 16px;
|
|
22740
22754
|
}.v-progress-linear {
|
|
22741
22755
|
background: transparent;
|
|
22742
22756
|
overflow: hidden;
|
|
@@ -22947,18 +22961,6 @@ html.v-overlay-scroll-blocked {
|
|
|
22947
22961
|
0% {
|
|
22948
22962
|
background-position-x: var(--v-progress-linear-height);
|
|
22949
22963
|
}
|
|
22950
|
-
}.v-radio-group > .v-input__control {
|
|
22951
|
-
flex-direction: column;
|
|
22952
|
-
}
|
|
22953
|
-
.v-radio-group > .v-input__control > .v-label {
|
|
22954
|
-
margin-inline-start: 16px;
|
|
22955
|
-
}
|
|
22956
|
-
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
|
22957
|
-
padding-inline-start: 6px;
|
|
22958
|
-
margin-top: 8px;
|
|
22959
|
-
}
|
|
22960
|
-
.v-radio-group .v-input__details {
|
|
22961
|
-
padding-inline: 16px;
|
|
22962
22964
|
}.v-slider .v-slider__container input {
|
|
22963
22965
|
cursor: default;
|
|
22964
22966
|
padding: 0;
|
|
@@ -23016,32 +23018,6 @@ html.v-overlay-scroll-blocked {
|
|
|
23016
23018
|
|
|
23017
23019
|
.v-slider__label {
|
|
23018
23020
|
margin-inline-end: 12px;
|
|
23019
|
-
}.v-responsive {
|
|
23020
|
-
display: flex;
|
|
23021
|
-
flex: 1 0 auto;
|
|
23022
|
-
max-height: 100%;
|
|
23023
|
-
max-width: 100%;
|
|
23024
|
-
overflow: hidden;
|
|
23025
|
-
position: relative;
|
|
23026
|
-
}
|
|
23027
|
-
.v-responsive--inline {
|
|
23028
|
-
display: inline-flex;
|
|
23029
|
-
flex: 0 0 auto;
|
|
23030
|
-
}
|
|
23031
|
-
|
|
23032
|
-
.v-responsive__content {
|
|
23033
|
-
flex: 1 0 0px;
|
|
23034
|
-
max-width: 100%;
|
|
23035
|
-
}
|
|
23036
|
-
|
|
23037
|
-
.v-responsive__sizer ~ .v-responsive__content {
|
|
23038
|
-
margin-inline-start: -100%;
|
|
23039
|
-
}
|
|
23040
|
-
|
|
23041
|
-
.v-responsive__sizer {
|
|
23042
|
-
flex: 1 0 0px;
|
|
23043
|
-
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
23044
|
-
pointer-events: none;
|
|
23045
23021
|
}.v-rating {
|
|
23046
23022
|
max-width: 100%;
|
|
23047
23023
|
display: inline-flex;
|
|
@@ -23096,6 +23072,32 @@ html.v-overlay-scroll-blocked {
|
|
|
23096
23072
|
opacity: 0;
|
|
23097
23073
|
position: absolute;
|
|
23098
23074
|
width: 0;
|
|
23075
|
+
}.v-responsive {
|
|
23076
|
+
display: flex;
|
|
23077
|
+
flex: 1 0 auto;
|
|
23078
|
+
max-height: 100%;
|
|
23079
|
+
max-width: 100%;
|
|
23080
|
+
overflow: hidden;
|
|
23081
|
+
position: relative;
|
|
23082
|
+
}
|
|
23083
|
+
.v-responsive--inline {
|
|
23084
|
+
display: inline-flex;
|
|
23085
|
+
flex: 0 0 auto;
|
|
23086
|
+
}
|
|
23087
|
+
|
|
23088
|
+
.v-responsive__content {
|
|
23089
|
+
flex: 1 0 0px;
|
|
23090
|
+
max-width: 100%;
|
|
23091
|
+
}
|
|
23092
|
+
|
|
23093
|
+
.v-responsive__sizer ~ .v-responsive__content {
|
|
23094
|
+
margin-inline-start: -100%;
|
|
23095
|
+
}
|
|
23096
|
+
|
|
23097
|
+
.v-responsive__sizer {
|
|
23098
|
+
flex: 1 0 0px;
|
|
23099
|
+
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
23100
|
+
pointer-events: none;
|
|
23099
23101
|
}.v-selection-control-group {
|
|
23100
23102
|
grid-area: control;
|
|
23101
23103
|
display: flex;
|
|
@@ -23104,6 +23106,34 @@ html.v-overlay-scroll-blocked {
|
|
|
23104
23106
|
.v-selection-control-group--inline {
|
|
23105
23107
|
flex-direction: row;
|
|
23106
23108
|
flex-wrap: wrap;
|
|
23109
|
+
}.v-sheet {
|
|
23110
|
+
display: block;
|
|
23111
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
23112
|
+
border-style: solid;
|
|
23113
|
+
border-width: 0;
|
|
23114
|
+
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));
|
|
23115
|
+
border-radius: 0;
|
|
23116
|
+
background: rgb(var(--v-theme-surface));
|
|
23117
|
+
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
23118
|
+
}
|
|
23119
|
+
.v-sheet--border {
|
|
23120
|
+
border-width: thin;
|
|
23121
|
+
box-shadow: none;
|
|
23122
|
+
}
|
|
23123
|
+
.v-sheet--absolute {
|
|
23124
|
+
position: absolute;
|
|
23125
|
+
}
|
|
23126
|
+
.v-sheet--fixed {
|
|
23127
|
+
position: fixed;
|
|
23128
|
+
}
|
|
23129
|
+
.v-sheet--relative {
|
|
23130
|
+
position: relative;
|
|
23131
|
+
}
|
|
23132
|
+
.v-sheet--sticky {
|
|
23133
|
+
position: sticky;
|
|
23134
|
+
}
|
|
23135
|
+
.v-sheet--rounded {
|
|
23136
|
+
border-radius: 4px;
|
|
23107
23137
|
}.v-select .v-field .v-text-field__prefix,
|
|
23108
23138
|
.v-select .v-field .v-text-field__suffix,
|
|
23109
23139
|
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
|
@@ -23152,6 +23182,48 @@ html.v-overlay-scroll-blocked {
|
|
|
23152
23182
|
.v-select--active-menu .v-select__menu-icon {
|
|
23153
23183
|
opacity: var(--v-high-emphasis-opacity);
|
|
23154
23184
|
transform: rotate(180deg);
|
|
23185
|
+
}.v-slide-group {
|
|
23186
|
+
display: flex;
|
|
23187
|
+
overflow: hidden;
|
|
23188
|
+
}
|
|
23189
|
+
|
|
23190
|
+
.v-slide-group__next,
|
|
23191
|
+
.v-slide-group__prev {
|
|
23192
|
+
align-items: center;
|
|
23193
|
+
display: flex;
|
|
23194
|
+
flex: 0 1 52px;
|
|
23195
|
+
justify-content: center;
|
|
23196
|
+
min-width: 52px;
|
|
23197
|
+
cursor: pointer;
|
|
23198
|
+
}
|
|
23199
|
+
.v-slide-group__next--disabled,
|
|
23200
|
+
.v-slide-group__prev--disabled {
|
|
23201
|
+
pointer-events: none;
|
|
23202
|
+
opacity: var(--v-disabled-opacity);
|
|
23203
|
+
}
|
|
23204
|
+
|
|
23205
|
+
.v-slide-group__content {
|
|
23206
|
+
display: flex;
|
|
23207
|
+
flex: 1 0 auto;
|
|
23208
|
+
position: relative;
|
|
23209
|
+
transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
|
|
23210
|
+
white-space: nowrap;
|
|
23211
|
+
}
|
|
23212
|
+
.v-slide-group__content > * {
|
|
23213
|
+
white-space: initial;
|
|
23214
|
+
}
|
|
23215
|
+
|
|
23216
|
+
.v-slide-group__container {
|
|
23217
|
+
contain: content;
|
|
23218
|
+
display: flex;
|
|
23219
|
+
flex: 1 1 auto;
|
|
23220
|
+
overflow: hidden;
|
|
23221
|
+
}
|
|
23222
|
+
|
|
23223
|
+
.v-slide-group--vertical,
|
|
23224
|
+
.v-slide-group--vertical .v-slide-group__container,
|
|
23225
|
+
.v-slide-group--vertical .v-slide-group__content {
|
|
23226
|
+
flex-direction: column;
|
|
23155
23227
|
}.v-selection-control {
|
|
23156
23228
|
align-items: center;
|
|
23157
23229
|
contain: layout;
|
|
@@ -23253,34 +23325,6 @@ html.v-overlay-scroll-blocked {
|
|
|
23253
23325
|
}
|
|
23254
23326
|
.v-selection-control--focus-visible .v-selection-control__input::before {
|
|
23255
23327
|
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
23256
|
-
}.v-sheet {
|
|
23257
|
-
display: block;
|
|
23258
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
23259
|
-
border-style: solid;
|
|
23260
|
-
border-width: 0;
|
|
23261
|
-
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));
|
|
23262
|
-
border-radius: 0;
|
|
23263
|
-
background: rgb(var(--v-theme-surface));
|
|
23264
|
-
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
23265
|
-
}
|
|
23266
|
-
.v-sheet--border {
|
|
23267
|
-
border-width: thin;
|
|
23268
|
-
box-shadow: none;
|
|
23269
|
-
}
|
|
23270
|
-
.v-sheet--absolute {
|
|
23271
|
-
position: absolute;
|
|
23272
|
-
}
|
|
23273
|
-
.v-sheet--fixed {
|
|
23274
|
-
position: fixed;
|
|
23275
|
-
}
|
|
23276
|
-
.v-sheet--relative {
|
|
23277
|
-
position: relative;
|
|
23278
|
-
}
|
|
23279
|
-
.v-sheet--sticky {
|
|
23280
|
-
position: sticky;
|
|
23281
|
-
}
|
|
23282
|
-
.v-sheet--rounded {
|
|
23283
|
-
border-radius: 4px;
|
|
23284
23328
|
}.v-skeleton-loader {
|
|
23285
23329
|
align-items: center;
|
|
23286
23330
|
background: rgb(var(--v-theme-surface));
|
|
@@ -23504,48 +23548,6 @@ html.v-overlay-scroll-blocked {
|
|
|
23504
23548
|
100% {
|
|
23505
23549
|
transform: translateX(100%);
|
|
23506
23550
|
}
|
|
23507
|
-
}.v-slide-group {
|
|
23508
|
-
display: flex;
|
|
23509
|
-
overflow: hidden;
|
|
23510
|
-
}
|
|
23511
|
-
|
|
23512
|
-
.v-slide-group__next,
|
|
23513
|
-
.v-slide-group__prev {
|
|
23514
|
-
align-items: center;
|
|
23515
|
-
display: flex;
|
|
23516
|
-
flex: 0 1 52px;
|
|
23517
|
-
justify-content: center;
|
|
23518
|
-
min-width: 52px;
|
|
23519
|
-
cursor: pointer;
|
|
23520
|
-
}
|
|
23521
|
-
.v-slide-group__next--disabled,
|
|
23522
|
-
.v-slide-group__prev--disabled {
|
|
23523
|
-
pointer-events: none;
|
|
23524
|
-
opacity: var(--v-disabled-opacity);
|
|
23525
|
-
}
|
|
23526
|
-
|
|
23527
|
-
.v-slide-group__content {
|
|
23528
|
-
display: flex;
|
|
23529
|
-
flex: 1 0 auto;
|
|
23530
|
-
position: relative;
|
|
23531
|
-
transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
|
|
23532
|
-
white-space: nowrap;
|
|
23533
|
-
}
|
|
23534
|
-
.v-slide-group__content > * {
|
|
23535
|
-
white-space: initial;
|
|
23536
|
-
}
|
|
23537
|
-
|
|
23538
|
-
.v-slide-group__container {
|
|
23539
|
-
contain: content;
|
|
23540
|
-
display: flex;
|
|
23541
|
-
flex: 1 1 auto;
|
|
23542
|
-
overflow: hidden;
|
|
23543
|
-
}
|
|
23544
|
-
|
|
23545
|
-
.v-slide-group--vertical,
|
|
23546
|
-
.v-slide-group--vertical .v-slide-group__container,
|
|
23547
|
-
.v-slide-group--vertical .v-slide-group__content {
|
|
23548
|
-
flex-direction: column;
|
|
23549
23551
|
}.v-stepper.v-sheet {
|
|
23550
23552
|
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
23551
23553
|
border-radius: 4px;
|
|
@@ -23781,175 +23783,24 @@ html.v-overlay-scroll-blocked {
|
|
|
23781
23783
|
}
|
|
23782
23784
|
.v-snackbar-transition-leave-to {
|
|
23783
23785
|
opacity: 0;
|
|
23784
|
-
}.v-
|
|
23785
|
-
|
|
23786
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
23787
|
-
font-size: 0.875rem;
|
|
23788
|
-
transition-duration: 0.28s;
|
|
23789
|
-
transition-property: box-shadow, opacity, background, height;
|
|
23790
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
23786
|
+
}.v-switch .v-label {
|
|
23787
|
+
padding-inline-start: 10px;
|
|
23791
23788
|
}
|
|
23792
|
-
.v-
|
|
23793
|
-
|
|
23789
|
+
.v-switch .v-switch__thumb {
|
|
23790
|
+
background-color: rgb(var(--v-theme-surface-bright));
|
|
23791
|
+
color: rgb(var(--v-theme-on-surface-bright));
|
|
23794
23792
|
}
|
|
23795
|
-
|
|
23796
|
-
|
|
23793
|
+
|
|
23794
|
+
.v-switch__loader {
|
|
23795
|
+
display: flex;
|
|
23797
23796
|
}
|
|
23798
|
-
.v-
|
|
23799
|
-
|
|
23800
|
-
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
|
23797
|
+
.v-switch__loader .v-progress-circular {
|
|
23798
|
+
color: rgb(var(--v-theme-surface));
|
|
23801
23799
|
}
|
|
23802
|
-
|
|
23803
|
-
.v-
|
|
23804
|
-
|
|
23805
|
-
|
|
23806
|
-
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
|
|
23807
|
-
position: relative;
|
|
23808
|
-
}
|
|
23809
|
-
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
|
|
23810
|
-
content: "";
|
|
23811
|
-
position: absolute;
|
|
23812
|
-
top: 0;
|
|
23813
|
-
left: 0;
|
|
23814
|
-
width: 100%;
|
|
23815
|
-
height: 100%;
|
|
23816
|
-
background: rgba(var(--v-border-color), var(--v-hover-opacity));
|
|
23817
|
-
pointer-events: none;
|
|
23818
|
-
}
|
|
23819
|
-
.v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
|
23820
|
-
background: rgb(var(--v-theme-surface));
|
|
23821
|
-
box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
|
23822
|
-
z-index: 1;
|
|
23823
|
-
}
|
|
23824
|
-
.v-table.v-table--fixed-footer > tfoot > tr > th,
|
|
23825
|
-
.v-table.v-table--fixed-footer > tfoot > tr > td {
|
|
23826
|
-
background: rgb(var(--v-theme-surface));
|
|
23827
|
-
box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
|
23828
|
-
}
|
|
23829
|
-
|
|
23830
|
-
.v-table {
|
|
23831
|
-
--v-table-header-height: 56px;
|
|
23832
|
-
border-radius: inherit;
|
|
23833
|
-
line-height: 1.5;
|
|
23834
|
-
max-width: 100%;
|
|
23835
|
-
display: flex;
|
|
23836
|
-
flex-direction: column;
|
|
23837
|
-
}
|
|
23838
|
-
.v-table > .v-table__wrapper > table {
|
|
23839
|
-
width: 100%;
|
|
23840
|
-
border-spacing: 0;
|
|
23841
|
-
}
|
|
23842
|
-
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
|
23843
|
-
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
|
23844
|
-
.v-table > .v-table__wrapper > table > thead > tr > td,
|
|
23845
|
-
.v-table > .v-table__wrapper > table > thead > tr > th,
|
|
23846
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > td,
|
|
23847
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
|
23848
|
-
padding: 0 16px;
|
|
23849
|
-
transition-duration: 0.28s;
|
|
23850
|
-
transition-property: box-shadow, opacity, background, height;
|
|
23851
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
23852
|
-
}
|
|
23853
|
-
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
|
23854
|
-
.v-table > .v-table__wrapper > table > thead > tr > th,
|
|
23855
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
|
23856
|
-
font-weight: 500;
|
|
23857
|
-
-webkit-user-select: none;
|
|
23858
|
-
user-select: none;
|
|
23859
|
-
text-align: start;
|
|
23860
|
-
}
|
|
23861
|
-
.v-table--density-default > .v-table__wrapper > table > tbody > tr > th,
|
|
23862
|
-
.v-table--density-default > .v-table__wrapper > table > thead > tr > th,
|
|
23863
|
-
.v-table--density-default > .v-table__wrapper > table > tfoot > tr > th {
|
|
23864
|
-
height: calc(var(--v-table-header-height) + 0px);
|
|
23865
|
-
}
|
|
23866
|
-
.v-table--density-default > .v-table__wrapper > table > tbody > tr > td,
|
|
23867
|
-
.v-table--density-default > .v-table__wrapper > table > thead > tr > td,
|
|
23868
|
-
.v-table--density-default > .v-table__wrapper > table > tfoot > tr > td {
|
|
23869
|
-
height: calc(var(--v-table-row-height, 52px) + 0px);
|
|
23870
|
-
}
|
|
23871
|
-
|
|
23872
|
-
.v-table--density-comfortable > .v-table__wrapper > table > tbody > tr > th,
|
|
23873
|
-
.v-table--density-comfortable > .v-table__wrapper > table > thead > tr > th,
|
|
23874
|
-
.v-table--density-comfortable > .v-table__wrapper > table > tfoot > tr > th {
|
|
23875
|
-
height: calc(var(--v-table-header-height) - 8px);
|
|
23876
|
-
}
|
|
23877
|
-
.v-table--density-comfortable > .v-table__wrapper > table > tbody > tr > td,
|
|
23878
|
-
.v-table--density-comfortable > .v-table__wrapper > table > thead > tr > td,
|
|
23879
|
-
.v-table--density-comfortable > .v-table__wrapper > table > tfoot > tr > td {
|
|
23880
|
-
height: calc(var(--v-table-row-height, 52px) - 8px);
|
|
23881
|
-
}
|
|
23882
|
-
|
|
23883
|
-
.v-table--density-compact > .v-table__wrapper > table > tbody > tr > th,
|
|
23884
|
-
.v-table--density-compact > .v-table__wrapper > table > thead > tr > th,
|
|
23885
|
-
.v-table--density-compact > .v-table__wrapper > table > tfoot > tr > th {
|
|
23886
|
-
height: calc(var(--v-table-header-height) - 16px);
|
|
23887
|
-
}
|
|
23888
|
-
.v-table--density-compact > .v-table__wrapper > table > tbody > tr > td,
|
|
23889
|
-
.v-table--density-compact > .v-table__wrapper > table > thead > tr > td,
|
|
23890
|
-
.v-table--density-compact > .v-table__wrapper > table > tfoot > tr > td {
|
|
23891
|
-
height: calc(var(--v-table-row-height, 52px) - 16px);
|
|
23892
|
-
}
|
|
23893
|
-
|
|
23894
|
-
.v-table__wrapper {
|
|
23895
|
-
border-radius: inherit;
|
|
23896
|
-
overflow: auto;
|
|
23897
|
-
flex: 1 1 auto;
|
|
23898
|
-
}
|
|
23899
|
-
|
|
23900
|
-
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
|
|
23901
|
-
border-top-left-radius: 0;
|
|
23902
|
-
}
|
|
23903
|
-
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
|
|
23904
|
-
border-top-right-radius: 0;
|
|
23905
|
-
}
|
|
23906
|
-
|
|
23907
|
-
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
|
|
23908
|
-
border-bottom-left-radius: 0;
|
|
23909
|
-
}
|
|
23910
|
-
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
|
|
23911
|
-
border-bottom-right-radius: 0;
|
|
23912
|
-
}
|
|
23913
|
-
|
|
23914
|
-
.v-table--fixed-height > .v-table__wrapper {
|
|
23915
|
-
overflow-y: auto;
|
|
23916
|
-
}
|
|
23917
|
-
|
|
23918
|
-
.v-table--fixed-header > .v-table__wrapper > table > thead {
|
|
23919
|
-
position: sticky;
|
|
23920
|
-
top: 0;
|
|
23921
|
-
z-index: 2;
|
|
23922
|
-
}
|
|
23923
|
-
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
|
23924
|
-
border-bottom: 0px !important;
|
|
23925
|
-
}
|
|
23926
|
-
|
|
23927
|
-
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
|
|
23928
|
-
position: sticky;
|
|
23929
|
-
bottom: 0;
|
|
23930
|
-
z-index: 1;
|
|
23931
|
-
}
|
|
23932
|
-
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
|
23933
|
-
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
|
23934
|
-
border-top: 0px !important;
|
|
23935
|
-
}.v-switch .v-label {
|
|
23936
|
-
padding-inline-start: 10px;
|
|
23937
|
-
}
|
|
23938
|
-
.v-switch .v-switch__thumb {
|
|
23939
|
-
background-color: rgb(var(--v-theme-surface-bright));
|
|
23940
|
-
color: rgb(var(--v-theme-on-surface-bright));
|
|
23941
|
-
}
|
|
23942
|
-
|
|
23943
|
-
.v-switch__loader {
|
|
23944
|
-
display: flex;
|
|
23945
|
-
}
|
|
23946
|
-
.v-switch__loader .v-progress-circular {
|
|
23947
|
-
color: rgb(var(--v-theme-surface));
|
|
23948
|
-
}
|
|
23949
|
-
|
|
23950
|
-
.v-switch__track,
|
|
23951
|
-
.v-switch__thumb {
|
|
23952
|
-
transition: none;
|
|
23800
|
+
|
|
23801
|
+
.v-switch__track,
|
|
23802
|
+
.v-switch__thumb {
|
|
23803
|
+
transition: none;
|
|
23953
23804
|
}
|
|
23954
23805
|
.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
|
|
23955
23806
|
.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
|
|
@@ -24023,6 +23874,43 @@ html.v-overlay-scroll-blocked {
|
|
|
24023
23874
|
}
|
|
24024
23875
|
.v-switch.v-switch--inset .v-selection-control__wrapper {
|
|
24025
23876
|
width: auto;
|
|
23877
|
+
}.v-system-bar {
|
|
23878
|
+
align-items: center;
|
|
23879
|
+
display: flex;
|
|
23880
|
+
flex: 1 1 auto;
|
|
23881
|
+
height: 24px;
|
|
23882
|
+
justify-content: flex-end;
|
|
23883
|
+
max-width: 100%;
|
|
23884
|
+
padding-inline: 8px;
|
|
23885
|
+
position: relative;
|
|
23886
|
+
text-align: end;
|
|
23887
|
+
width: 100%;
|
|
23888
|
+
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));
|
|
23889
|
+
background: rgba(var(--v-theme-surface-light));
|
|
23890
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
|
23891
|
+
font-size: 0.75rem;
|
|
23892
|
+
font-weight: 400;
|
|
23893
|
+
letter-spacing: 0.0333333333em;
|
|
23894
|
+
line-height: 1.25rem;
|
|
23895
|
+
text-transform: none;
|
|
23896
|
+
}
|
|
23897
|
+
.v-system-bar .v-icon {
|
|
23898
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
23899
|
+
}
|
|
23900
|
+
.v-system-bar--absolute {
|
|
23901
|
+
position: absolute;
|
|
23902
|
+
}
|
|
23903
|
+
.v-system-bar--fixed {
|
|
23904
|
+
position: fixed;
|
|
23905
|
+
}
|
|
23906
|
+
.v-system-bar--rounded {
|
|
23907
|
+
border-radius: 0;
|
|
23908
|
+
}
|
|
23909
|
+
.v-system-bar--window {
|
|
23910
|
+
height: 32px;
|
|
23911
|
+
}
|
|
23912
|
+
.v-system-bar:not(.v-system-bar--absolute) {
|
|
23913
|
+
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
|
24026
23914
|
}.v-tab.v-tab.v-btn {
|
|
24027
23915
|
height: var(--v-tabs-height);
|
|
24028
23916
|
border-radius: 0;
|
|
@@ -24096,65 +23984,218 @@ html.v-overlay-scroll-blocked {
|
|
|
24096
23984
|
margin-inline-start: auto;
|
|
24097
23985
|
}
|
|
24098
23986
|
|
|
24099
|
-
.v-tabs--grow {
|
|
24100
|
-
flex-grow: 1;
|
|
23987
|
+
.v-tabs--grow {
|
|
23988
|
+
flex-grow: 1;
|
|
23989
|
+
}
|
|
23990
|
+
.v-tabs--grow .v-tab {
|
|
23991
|
+
flex: 1 0 auto;
|
|
23992
|
+
max-width: none;
|
|
23993
|
+
}
|
|
23994
|
+
|
|
23995
|
+
.v-tabs--align-tabs-end .v-tab:first-child {
|
|
23996
|
+
margin-inline-start: auto;
|
|
23997
|
+
}
|
|
23998
|
+
.v-tabs--align-tabs-end .v-tab:last-child {
|
|
23999
|
+
margin-inline-end: 0;
|
|
24000
|
+
}
|
|
24001
|
+
|
|
24002
|
+
@media (max-width: 1279.98px) {
|
|
24003
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
|
24004
|
+
margin-inline-start: 52px;
|
|
24005
|
+
}
|
|
24006
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
|
24007
|
+
margin-inline-end: 52px;
|
|
24008
|
+
}
|
|
24009
|
+
}.v-table {
|
|
24010
|
+
background: rgb(var(--v-theme-surface));
|
|
24011
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
24012
|
+
font-size: 0.875rem;
|
|
24013
|
+
transition-duration: 0.28s;
|
|
24014
|
+
transition-property: box-shadow, opacity, background, height;
|
|
24015
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
24016
|
+
}
|
|
24017
|
+
.v-table .v-table-divider {
|
|
24018
|
+
border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
|
24019
|
+
}
|
|
24020
|
+
.v-table .v-table__wrapper > table > thead > tr > th {
|
|
24021
|
+
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
|
24022
|
+
}
|
|
24023
|
+
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
|
|
24024
|
+
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
|
|
24025
|
+
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
|
24026
|
+
}
|
|
24027
|
+
.v-table .v-table__wrapper > table > tfoot > tr > td,
|
|
24028
|
+
.v-table .v-table__wrapper > table > tfoot > tr > th {
|
|
24029
|
+
border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
|
24030
|
+
}
|
|
24031
|
+
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
|
|
24032
|
+
position: relative;
|
|
24033
|
+
}
|
|
24034
|
+
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
|
|
24035
|
+
content: "";
|
|
24036
|
+
position: absolute;
|
|
24037
|
+
top: 0;
|
|
24038
|
+
left: 0;
|
|
24039
|
+
width: 100%;
|
|
24040
|
+
height: 100%;
|
|
24041
|
+
background: rgba(var(--v-border-color), var(--v-hover-opacity));
|
|
24042
|
+
pointer-events: none;
|
|
24043
|
+
}
|
|
24044
|
+
.v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
|
24045
|
+
background: rgb(var(--v-theme-surface));
|
|
24046
|
+
box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
|
24047
|
+
z-index: 1;
|
|
24048
|
+
}
|
|
24049
|
+
.v-table.v-table--fixed-footer > tfoot > tr > th,
|
|
24050
|
+
.v-table.v-table--fixed-footer > tfoot > tr > td {
|
|
24051
|
+
background: rgb(var(--v-theme-surface));
|
|
24052
|
+
box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
|
24053
|
+
}
|
|
24054
|
+
|
|
24055
|
+
.v-table {
|
|
24056
|
+
--v-table-header-height: 56px;
|
|
24057
|
+
border-radius: inherit;
|
|
24058
|
+
line-height: 1.5;
|
|
24059
|
+
max-width: 100%;
|
|
24060
|
+
display: flex;
|
|
24061
|
+
flex-direction: column;
|
|
24062
|
+
}
|
|
24063
|
+
.v-table > .v-table__wrapper > table {
|
|
24064
|
+
width: 100%;
|
|
24065
|
+
border-spacing: 0;
|
|
24066
|
+
}
|
|
24067
|
+
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
|
24068
|
+
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
|
24069
|
+
.v-table > .v-table__wrapper > table > thead > tr > td,
|
|
24070
|
+
.v-table > .v-table__wrapper > table > thead > tr > th,
|
|
24071
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > td,
|
|
24072
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
|
24073
|
+
padding: 0 16px;
|
|
24074
|
+
transition-duration: 0.28s;
|
|
24075
|
+
transition-property: box-shadow, opacity, background, height;
|
|
24076
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
24077
|
+
}
|
|
24078
|
+
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
|
24079
|
+
.v-table > .v-table__wrapper > table > thead > tr > th,
|
|
24080
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
|
24081
|
+
font-weight: 500;
|
|
24082
|
+
-webkit-user-select: none;
|
|
24083
|
+
user-select: none;
|
|
24084
|
+
text-align: start;
|
|
24085
|
+
}
|
|
24086
|
+
.v-table--density-default > .v-table__wrapper > table > tbody > tr > th,
|
|
24087
|
+
.v-table--density-default > .v-table__wrapper > table > thead > tr > th,
|
|
24088
|
+
.v-table--density-default > .v-table__wrapper > table > tfoot > tr > th {
|
|
24089
|
+
height: calc(var(--v-table-header-height) + 0px);
|
|
24090
|
+
}
|
|
24091
|
+
.v-table--density-default > .v-table__wrapper > table > tbody > tr > td,
|
|
24092
|
+
.v-table--density-default > .v-table__wrapper > table > thead > tr > td,
|
|
24093
|
+
.v-table--density-default > .v-table__wrapper > table > tfoot > tr > td {
|
|
24094
|
+
height: calc(var(--v-table-row-height, 52px) + 0px);
|
|
24095
|
+
}
|
|
24096
|
+
|
|
24097
|
+
.v-table--density-comfortable > .v-table__wrapper > table > tbody > tr > th,
|
|
24098
|
+
.v-table--density-comfortable > .v-table__wrapper > table > thead > tr > th,
|
|
24099
|
+
.v-table--density-comfortable > .v-table__wrapper > table > tfoot > tr > th {
|
|
24100
|
+
height: calc(var(--v-table-header-height) - 8px);
|
|
24101
|
+
}
|
|
24102
|
+
.v-table--density-comfortable > .v-table__wrapper > table > tbody > tr > td,
|
|
24103
|
+
.v-table--density-comfortable > .v-table__wrapper > table > thead > tr > td,
|
|
24104
|
+
.v-table--density-comfortable > .v-table__wrapper > table > tfoot > tr > td {
|
|
24105
|
+
height: calc(var(--v-table-row-height, 52px) - 8px);
|
|
24106
|
+
}
|
|
24107
|
+
|
|
24108
|
+
.v-table--density-compact > .v-table__wrapper > table > tbody > tr > th,
|
|
24109
|
+
.v-table--density-compact > .v-table__wrapper > table > thead > tr > th,
|
|
24110
|
+
.v-table--density-compact > .v-table__wrapper > table > tfoot > tr > th {
|
|
24111
|
+
height: calc(var(--v-table-header-height) - 16px);
|
|
24112
|
+
}
|
|
24113
|
+
.v-table--density-compact > .v-table__wrapper > table > tbody > tr > td,
|
|
24114
|
+
.v-table--density-compact > .v-table__wrapper > table > thead > tr > td,
|
|
24115
|
+
.v-table--density-compact > .v-table__wrapper > table > tfoot > tr > td {
|
|
24116
|
+
height: calc(var(--v-table-row-height, 52px) - 16px);
|
|
24117
|
+
}
|
|
24118
|
+
|
|
24119
|
+
.v-table__wrapper {
|
|
24120
|
+
border-radius: inherit;
|
|
24121
|
+
overflow: auto;
|
|
24122
|
+
flex: 1 1 auto;
|
|
24123
|
+
}
|
|
24124
|
+
|
|
24125
|
+
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
|
|
24126
|
+
border-top-left-radius: 0;
|
|
24127
|
+
}
|
|
24128
|
+
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
|
|
24129
|
+
border-top-right-radius: 0;
|
|
24130
|
+
}
|
|
24131
|
+
|
|
24132
|
+
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
|
|
24133
|
+
border-bottom-left-radius: 0;
|
|
24134
|
+
}
|
|
24135
|
+
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
|
|
24136
|
+
border-bottom-right-radius: 0;
|
|
24137
|
+
}
|
|
24138
|
+
|
|
24139
|
+
.v-table--fixed-height > .v-table__wrapper {
|
|
24140
|
+
overflow-y: auto;
|
|
24141
|
+
}
|
|
24142
|
+
|
|
24143
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead {
|
|
24144
|
+
position: sticky;
|
|
24145
|
+
top: 0;
|
|
24146
|
+
z-index: 2;
|
|
24101
24147
|
}
|
|
24102
|
-
.v-
|
|
24103
|
-
|
|
24104
|
-
max-width: none;
|
|
24148
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
|
24149
|
+
border-bottom: 0px !important;
|
|
24105
24150
|
}
|
|
24106
24151
|
|
|
24107
|
-
.v-
|
|
24108
|
-
|
|
24152
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
|
|
24153
|
+
position: sticky;
|
|
24154
|
+
bottom: 0;
|
|
24155
|
+
z-index: 1;
|
|
24109
24156
|
}
|
|
24110
|
-
.v-
|
|
24111
|
-
|
|
24157
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
|
24158
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
|
24159
|
+
border-top: 0px !important;
|
|
24160
|
+
}.v-textarea .v-field {
|
|
24161
|
+
--v-textarea-control-height: var(--v-input-control-height);
|
|
24112
24162
|
}
|
|
24113
|
-
|
|
24114
|
-
|
|
24115
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
|
24116
|
-
margin-inline-start: 52px;
|
|
24117
|
-
}
|
|
24118
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
|
24119
|
-
margin-inline-end: 52px;
|
|
24120
|
-
}
|
|
24121
|
-
}.v-system-bar {
|
|
24122
|
-
align-items: center;
|
|
24123
|
-
display: flex;
|
|
24124
|
-
flex: 1 1 auto;
|
|
24125
|
-
height: 24px;
|
|
24126
|
-
justify-content: flex-end;
|
|
24127
|
-
max-width: 100%;
|
|
24128
|
-
padding-inline: 8px;
|
|
24129
|
-
position: relative;
|
|
24130
|
-
text-align: end;
|
|
24131
|
-
width: 100%;
|
|
24132
|
-
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));
|
|
24133
|
-
background: rgba(var(--v-theme-on-surface-variant));
|
|
24134
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
24135
|
-
font-size: 0.75rem;
|
|
24136
|
-
font-weight: 400;
|
|
24137
|
-
letter-spacing: 0.0333333333em;
|
|
24138
|
-
line-height: 1.25rem;
|
|
24139
|
-
text-transform: none;
|
|
24163
|
+
.v-textarea .v-field__field {
|
|
24164
|
+
--v-input-control-height: var(--v-textarea-control-height);
|
|
24140
24165
|
}
|
|
24141
|
-
.v-
|
|
24142
|
-
|
|
24166
|
+
.v-textarea .v-field__input {
|
|
24167
|
+
flex: 1 1 auto;
|
|
24168
|
+
outline: none;
|
|
24169
|
+
-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));
|
|
24170
|
+
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));
|
|
24143
24171
|
}
|
|
24144
|
-
.v-
|
|
24172
|
+
.v-textarea .v-field__input.v-textarea__sizer {
|
|
24173
|
+
visibility: hidden;
|
|
24145
24174
|
position: absolute;
|
|
24175
|
+
top: 0;
|
|
24176
|
+
left: 0;
|
|
24177
|
+
height: 0 !important;
|
|
24178
|
+
min-height: 0 !important;
|
|
24179
|
+
pointer-events: none;
|
|
24146
24180
|
}
|
|
24147
|
-
.v-
|
|
24148
|
-
|
|
24181
|
+
.v-textarea--no-resize .v-field__input {
|
|
24182
|
+
resize: none;
|
|
24149
24183
|
}
|
|
24150
|
-
.v-
|
|
24151
|
-
|
|
24184
|
+
.v-textarea .v-field--no-label textarea,
|
|
24185
|
+
.v-textarea .v-field--active textarea {
|
|
24186
|
+
opacity: 1;
|
|
24152
24187
|
}
|
|
24153
|
-
.v-
|
|
24154
|
-
|
|
24188
|
+
.v-textarea textarea {
|
|
24189
|
+
opacity: 0;
|
|
24190
|
+
flex: 1;
|
|
24191
|
+
min-width: 0;
|
|
24192
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
24155
24193
|
}
|
|
24156
|
-
.v-
|
|
24157
|
-
|
|
24194
|
+
.v-textarea textarea:focus, .v-textarea textarea:active {
|
|
24195
|
+
outline: none;
|
|
24196
|
+
}
|
|
24197
|
+
.v-textarea textarea:invalid {
|
|
24198
|
+
box-shadow: none;
|
|
24158
24199
|
}/* region BLOCK */
|
|
24159
24200
|
.v-text-field input {
|
|
24160
24201
|
color: inherit;
|
|
@@ -24222,50 +24263,11 @@ html.v-overlay-scroll-blocked {
|
|
|
24222
24263
|
padding-inline-end: var(--v-field-padding-end);
|
|
24223
24264
|
}
|
|
24224
24265
|
|
|
24225
|
-
/* endregion */.v-
|
|
24226
|
-
--v-textarea-control-height: var(--v-input-control-height);
|
|
24227
|
-
}
|
|
24228
|
-
.v-textarea .v-field__field {
|
|
24229
|
-
--v-input-control-height: var(--v-textarea-control-height);
|
|
24230
|
-
}
|
|
24231
|
-
.v-textarea .v-field__input {
|
|
24232
|
-
flex: 1 1 auto;
|
|
24233
|
-
outline: none;
|
|
24234
|
-
-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));
|
|
24235
|
-
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));
|
|
24236
|
-
}
|
|
24237
|
-
.v-textarea .v-field__input.v-textarea__sizer {
|
|
24238
|
-
visibility: hidden;
|
|
24239
|
-
position: absolute;
|
|
24240
|
-
top: 0;
|
|
24241
|
-
left: 0;
|
|
24242
|
-
height: 0 !important;
|
|
24243
|
-
min-height: 0 !important;
|
|
24244
|
-
pointer-events: none;
|
|
24245
|
-
}
|
|
24246
|
-
.v-textarea--no-resize .v-field__input {
|
|
24247
|
-
resize: none;
|
|
24248
|
-
}
|
|
24249
|
-
.v-textarea .v-field--no-label textarea,
|
|
24250
|
-
.v-textarea .v-field--active textarea {
|
|
24251
|
-
opacity: 1;
|
|
24252
|
-
}
|
|
24253
|
-
.v-textarea textarea {
|
|
24254
|
-
opacity: 0;
|
|
24255
|
-
flex: 1;
|
|
24256
|
-
min-width: 0;
|
|
24257
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
24258
|
-
}
|
|
24259
|
-
.v-textarea textarea:focus, .v-textarea textarea:active {
|
|
24260
|
-
outline: none;
|
|
24261
|
-
}
|
|
24262
|
-
.v-textarea textarea:invalid {
|
|
24263
|
-
box-shadow: none;
|
|
24264
|
-
}.v-theme-provider {
|
|
24266
|
+
/* endregion */.v-theme-provider {
|
|
24265
24267
|
background: rgb(var(--v-theme-background));
|
|
24266
24268
|
color: rgb(var(--v-theme-on-background));
|
|
24267
24269
|
}.v-timeline .v-timeline-divider__dot {
|
|
24268
|
-
background: rgb(var(--v-theme-
|
|
24270
|
+
background: rgb(var(--v-theme-surface-light));
|
|
24269
24271
|
}
|
|
24270
24272
|
.v-timeline .v-timeline-divider__inner-dot {
|
|
24271
24273
|
background: rgb(var(--v-theme-on-surface));
|
|
@@ -24697,8 +24699,8 @@ html.v-overlay-scroll-blocked {
|
|
|
24697
24699
|
border-width: 0;
|
|
24698
24700
|
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));
|
|
24699
24701
|
border-radius: 0;
|
|
24700
|
-
background: rgb(var(--v-theme-
|
|
24701
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
24702
|
+
background: rgb(var(--v-theme-surface-light));
|
|
24703
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
|
24702
24704
|
}
|
|
24703
24705
|
.v-toolbar--border {
|
|
24704
24706
|
border-width: thin;
|
|
@@ -24906,6 +24908,69 @@ html.v-overlay-scroll-blocked {
|
|
|
24906
24908
|
}
|
|
24907
24909
|
.v-virtual-scroll__container {
|
|
24908
24910
|
display: block;
|
|
24911
|
+
}.v-color-picker-edit {
|
|
24912
|
+
display: flex;
|
|
24913
|
+
margin-top: 24px;
|
|
24914
|
+
}
|
|
24915
|
+
|
|
24916
|
+
.v-color-picker-edit__input {
|
|
24917
|
+
width: 100%;
|
|
24918
|
+
display: flex;
|
|
24919
|
+
flex-wrap: wrap;
|
|
24920
|
+
justify-content: center;
|
|
24921
|
+
text-align: center;
|
|
24922
|
+
}
|
|
24923
|
+
.v-color-picker-edit__input:not(:last-child) {
|
|
24924
|
+
margin-inline-end: 8px;
|
|
24925
|
+
}
|
|
24926
|
+
.v-color-picker-edit__input input {
|
|
24927
|
+
border-radius: 4px;
|
|
24928
|
+
margin-bottom: 8px;
|
|
24929
|
+
min-width: 0;
|
|
24930
|
+
outline: none;
|
|
24931
|
+
text-align: center;
|
|
24932
|
+
width: 100%;
|
|
24933
|
+
height: 32px;
|
|
24934
|
+
background: rgba(var(--v-theme-surface-variant), 0.2);
|
|
24935
|
+
color: rgba(var(--v-theme-on-surface));
|
|
24936
|
+
}
|
|
24937
|
+
.v-color-picker-edit__input span {
|
|
24938
|
+
font-size: 0.75rem;
|
|
24939
|
+
}.v-color-picker-swatches {
|
|
24940
|
+
overflow-y: auto;
|
|
24941
|
+
}
|
|
24942
|
+
.v-color-picker-swatches > div {
|
|
24943
|
+
display: flex;
|
|
24944
|
+
flex-wrap: wrap;
|
|
24945
|
+
justify-content: center;
|
|
24946
|
+
padding: 8px;
|
|
24947
|
+
}
|
|
24948
|
+
|
|
24949
|
+
.v-color-picker-swatches__swatch {
|
|
24950
|
+
display: flex;
|
|
24951
|
+
flex-direction: column;
|
|
24952
|
+
margin-bottom: 10px;
|
|
24953
|
+
}
|
|
24954
|
+
|
|
24955
|
+
.v-color-picker-swatches__color {
|
|
24956
|
+
position: relative;
|
|
24957
|
+
height: 18px;
|
|
24958
|
+
max-height: 18px;
|
|
24959
|
+
width: 45px;
|
|
24960
|
+
margin: 2px 4px;
|
|
24961
|
+
border-radius: 2px;
|
|
24962
|
+
-webkit-user-select: none;
|
|
24963
|
+
user-select: none;
|
|
24964
|
+
overflow: hidden;
|
|
24965
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
|
24966
|
+
cursor: pointer;
|
|
24967
|
+
}
|
|
24968
|
+
.v-color-picker-swatches__color > div {
|
|
24969
|
+
display: flex;
|
|
24970
|
+
align-items: center;
|
|
24971
|
+
justify-content: center;
|
|
24972
|
+
width: 100%;
|
|
24973
|
+
height: 100%;
|
|
24909
24974
|
}.v-color-picker-preview__alpha .v-slider-track__background {
|
|
24910
24975
|
background-color: transparent !important;
|
|
24911
24976
|
}
|
|
@@ -24997,69 +25062,6 @@ html.v-overlay-scroll-blocked {
|
|
|
24997
25062
|
}
|
|
24998
25063
|
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
|
24999
25064
|
will-change: transform;
|
|
25000
|
-
}.v-color-picker-edit {
|
|
25001
|
-
display: flex;
|
|
25002
|
-
margin-top: 24px;
|
|
25003
|
-
}
|
|
25004
|
-
|
|
25005
|
-
.v-color-picker-edit__input {
|
|
25006
|
-
width: 100%;
|
|
25007
|
-
display: flex;
|
|
25008
|
-
flex-wrap: wrap;
|
|
25009
|
-
justify-content: center;
|
|
25010
|
-
text-align: center;
|
|
25011
|
-
}
|
|
25012
|
-
.v-color-picker-edit__input:not(:last-child) {
|
|
25013
|
-
margin-inline-end: 8px;
|
|
25014
|
-
}
|
|
25015
|
-
.v-color-picker-edit__input input {
|
|
25016
|
-
border-radius: 4px;
|
|
25017
|
-
margin-bottom: 8px;
|
|
25018
|
-
min-width: 0;
|
|
25019
|
-
outline: none;
|
|
25020
|
-
text-align: center;
|
|
25021
|
-
width: 100%;
|
|
25022
|
-
height: 32px;
|
|
25023
|
-
background: rgba(var(--v-theme-surface-variant), 0.2);
|
|
25024
|
-
color: rgba(var(--v-theme-on-surface));
|
|
25025
|
-
}
|
|
25026
|
-
.v-color-picker-edit__input span {
|
|
25027
|
-
font-size: 0.75rem;
|
|
25028
|
-
}.v-color-picker-swatches {
|
|
25029
|
-
overflow-y: auto;
|
|
25030
|
-
}
|
|
25031
|
-
.v-color-picker-swatches > div {
|
|
25032
|
-
display: flex;
|
|
25033
|
-
flex-wrap: wrap;
|
|
25034
|
-
justify-content: center;
|
|
25035
|
-
padding: 8px;
|
|
25036
|
-
}
|
|
25037
|
-
|
|
25038
|
-
.v-color-picker-swatches__swatch {
|
|
25039
|
-
display: flex;
|
|
25040
|
-
flex-direction: column;
|
|
25041
|
-
margin-bottom: 10px;
|
|
25042
|
-
}
|
|
25043
|
-
|
|
25044
|
-
.v-color-picker-swatches__color {
|
|
25045
|
-
position: relative;
|
|
25046
|
-
height: 18px;
|
|
25047
|
-
max-height: 18px;
|
|
25048
|
-
width: 45px;
|
|
25049
|
-
margin: 2px 4px;
|
|
25050
|
-
border-radius: 2px;
|
|
25051
|
-
-webkit-user-select: none;
|
|
25052
|
-
user-select: none;
|
|
25053
|
-
overflow: hidden;
|
|
25054
|
-
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
|
25055
|
-
cursor: pointer;
|
|
25056
|
-
}
|
|
25057
|
-
.v-color-picker-swatches__color > div {
|
|
25058
|
-
display: flex;
|
|
25059
|
-
align-items: center;
|
|
25060
|
-
justify-content: center;
|
|
25061
|
-
width: 100%;
|
|
25062
|
-
height: 100%;
|
|
25063
25065
|
}.v-slider-thumb {
|
|
25064
25066
|
touch-action: none;
|
|
25065
25067
|
color: rgb(var(--v-theme-surface-variant));
|
|
@@ -25226,7 +25228,7 @@ html.v-overlay-scroll-blocked {
|
|
|
25226
25228
|
background-color: rgb(var(--v-theme-surface-variant));
|
|
25227
25229
|
}
|
|
25228
25230
|
.v-slider-track__tick--filled {
|
|
25229
|
-
background-color: rgb(var(--v-theme-
|
|
25231
|
+
background-color: rgb(var(--v-theme-surface-light));
|
|
25230
25232
|
}
|
|
25231
25233
|
|
|
25232
25234
|
.v-slider-track {
|