@omnia/runtime 8.0.10-vnext → 8.0.12-vnext
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundles/omnia.fx.ux.vuetify.chip_6c32c2f0-cce6-4c71-b376-9fb68d0d508e.css +396 -1
- package/dist/bundles/omnia.fx.ux.vuetify.common_798d6494-70cc-47eb-9054-30b047beab19.css +589 -88
- package/dist/bundles/omnia.fx.ux.vuetify.dialog_0bf6198c-32c6-4cec-90bd-7988a979c9b0.css +77 -0
- package/dist/bundles/omnia.fx.ux.vuetify.select_6d5f3edc-0fc0-4765-804b-b6583381f25d.css +63 -1
- package/dist/bundles/omnia.fx.ux.vuetify.selection_df97a94b-b41b-45e0-883c-6e577a1634a1.css +3 -0
- package/dist/bundles/omnia.fx.ux.vuetify.shared_8769dc42-712d-4ce2-8d32-4b8604b92ae6.css +18522 -0
- package/dist/bundles/omnia.fx.ux.vuetify.textinput_181ff5d3-896f-4471-b516-3a347fe9e35d.css +70 -1
- package/dist/bundles/omnia.fx.ux_dee030cc-4ab3-4158-bb06-8049f5c67542.css +681 -20319
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_manifests.json +1 -1
- package/package.json +5 -5
- package/dist/bundles/omnia.fx.ux.vuetify.calendar_dfcf39df-10c2-43df-99bc-8c5657e6efa1.css +0 -5
- package/dist/bundles/omnia.fx.ux.vuetify.datepicker_0ab2c44b-d945-40f8-8042-0800a52d7c86.css +0 -5
- package/dist/bundles/omnia.fx.ux.vuetify.divider_e6c8262c-da1a-456c-8566-5d0b72334f63.css +0 -2
- package/dist/bundles/omnia.fx.ux.vuetify.timepicker_1d5e348d-5ff7-475e-a115-fc83e3ab9482.css +0 -3
- package/dist/bundles/omnia.fx.ux.vuetify.treeview_6d7b7ee9-0839-49fd-885e-513b17b6b023.css +0 -2
|
@@ -9,9 +9,94 @@
|
|
|
9
9
|
display: block;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
.v-avatar {
|
|
13
|
+
flex: none;
|
|
14
|
+
align-items: center;
|
|
15
|
+
display: inline-flex;
|
|
16
|
+
justify-content: center;
|
|
17
|
+
line-height: normal;
|
|
18
|
+
overflow: hidden;
|
|
19
|
+
position: relative;
|
|
20
|
+
text-align: center;
|
|
21
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22
|
+
transition-property: width, height;
|
|
23
|
+
vertical-align: middle;
|
|
24
|
+
border-radius: 50%;
|
|
25
|
+
}
|
|
26
|
+
.v-avatar.v-avatar--size-x-small {
|
|
27
|
+
--v-avatar-height: 24px;
|
|
28
|
+
}
|
|
29
|
+
.v-avatar.v-avatar--size-small {
|
|
30
|
+
--v-avatar-height: 32px;
|
|
31
|
+
}
|
|
32
|
+
.v-avatar.v-avatar--size-default {
|
|
33
|
+
--v-avatar-height: 40px;
|
|
34
|
+
}
|
|
35
|
+
.v-avatar.v-avatar--size-large {
|
|
36
|
+
--v-avatar-height: 48px;
|
|
37
|
+
}
|
|
38
|
+
.v-avatar.v-avatar--size-x-large {
|
|
39
|
+
--v-avatar-height: 56px;
|
|
40
|
+
}
|
|
41
|
+
.v-avatar.v-avatar--density-default {
|
|
42
|
+
height: calc(var(--v-avatar-height) + 0px);
|
|
43
|
+
width: calc(var(--v-avatar-height) + 0px);
|
|
44
|
+
}
|
|
45
|
+
.v-avatar.v-avatar--density-comfortable {
|
|
46
|
+
height: calc(var(--v-avatar-height) + -4px);
|
|
47
|
+
width: calc(var(--v-avatar-height) + -4px);
|
|
48
|
+
}
|
|
49
|
+
.v-avatar.v-avatar--density-compact {
|
|
50
|
+
height: calc(var(--v-avatar-height) + -8px);
|
|
51
|
+
width: calc(var(--v-avatar-height) + -8px);
|
|
52
|
+
}
|
|
53
|
+
.v-avatar--variant-plain, .v-avatar--variant-outlined, .v-avatar--variant-text, .v-avatar--variant-tonal {
|
|
54
|
+
background: transparent;
|
|
55
|
+
color: inherit;
|
|
56
|
+
}
|
|
57
|
+
.v-avatar--variant-plain {
|
|
58
|
+
opacity: 0.62;
|
|
59
|
+
}
|
|
60
|
+
.v-avatar--variant-plain:focus, .v-avatar--variant-plain:hover {
|
|
61
|
+
opacity: 1;
|
|
62
|
+
}
|
|
63
|
+
.v-avatar--variant-plain .v-avatar__overlay {
|
|
64
|
+
display: none;
|
|
65
|
+
}
|
|
66
|
+
.v-avatar--variant-elevated, .v-avatar--variant-flat {
|
|
67
|
+
background: var(--v-theme-surface);
|
|
68
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
69
|
+
}
|
|
70
|
+
.v-avatar--variant-elevated {
|
|
71
|
+
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-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
72
|
+
}
|
|
73
|
+
.v-avatar--variant-flat {
|
|
74
|
+
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
75
|
+
}
|
|
76
|
+
.v-avatar--variant-outlined {
|
|
77
|
+
border: thin solid currentColor;
|
|
78
|
+
}
|
|
79
|
+
.v-avatar--variant-text .v-avatar__overlay {
|
|
80
|
+
background: currentColor;
|
|
81
|
+
}
|
|
82
|
+
.v-avatar--variant-tonal .v-avatar__underlay {
|
|
83
|
+
background: currentColor;
|
|
84
|
+
opacity: var(--v-activated-opacity);
|
|
85
|
+
border-radius: inherit;
|
|
86
|
+
position: absolute;
|
|
87
|
+
top: 0;
|
|
88
|
+
right: 0;
|
|
89
|
+
bottom: 0;
|
|
90
|
+
left: 0;
|
|
91
|
+
pointer-events: none;
|
|
92
|
+
}
|
|
93
|
+
.v-avatar--rounded {
|
|
94
|
+
border-radius: 4px;
|
|
95
|
+
}
|
|
96
|
+
.v-avatar .v-img {
|
|
97
|
+
height: 100%;
|
|
98
|
+
width: 100%;
|
|
99
|
+
}
|
|
15
100
|
|
|
16
101
|
.v-tooltip .v-overlay__content {
|
|
17
102
|
background: rgba(var(--v-theme-surface-variant), 0.7);
|
|
@@ -36,12 +121,503 @@
|
|
|
36
121
|
transition-duration: 75ms;
|
|
37
122
|
}
|
|
38
123
|
|
|
39
|
-
[data-omfx] .v-list.primary>.v-list-item, .v-menu__content .v-list.primary>.v-list-item, .v-tooltip__content .v-list.primary>.v-list-item, .v-dialog__content .v-list.primary>.v-list-item,[data-omfx] .v-list.secondary>.v-list-item, .v-menu__content .v-list.secondary>.v-list-item, .v-tooltip__content .v-list.secondary>.v-list-item, .v-dialog__content .v-list.secondary>.v-list-item,[data-omfx] .v-list.accent>.v-list-item, .v-menu__content .v-list.accent>.v-list-item, .v-tooltip__content .v-list.accent>.v-list-item, .v-dialog__content .v-list.accent>.v-list-item,[data-omfx] .v-list.success>.v-list-item, .v-menu__content .v-list.success>.v-list-item, .v-tooltip__content .v-list.success>.v-list-item, .v-dialog__content .v-list.success>.v-list-item,[data-omfx] .v-list.error>.v-list-item, .v-menu__content .v-list.error>.v-list-item, .v-tooltip__content .v-list.error>.v-list-item, .v-dialog__content .v-list.error>.v-list-item,[data-omfx] .v-list.warning>.v-list-item, .v-menu__content .v-list.warning>.v-list-item, .v-tooltip__content .v-list.warning>.v-list-item, .v-dialog__content .v-list.warning>.v-list-item,[data-omfx] .v-list.info>.v-list-item, .v-menu__content .v-list.info>.v-list-item, .v-tooltip__content .v-list.info>.v-list-item, .v-dialog__content .v-list.info>.v-list-item{color:#fff}html .theme--light.v-list{background:#fff;color:rgba(0,0,0,.87)}html .theme--light.v-list .v-list--disabled{color:rgba(0,0,0,.38)}html .theme--light.v-list .v-list-group--active:before,html .theme--light.v-list .v-list-group--active:after{background:rgba(0,0,0,.12)}html .theme--dark.v-list{background:#1e1e1e;color:#fff}html .theme--dark.v-list .v-list--disabled{color:rgba(255,255,255,.5)}html .theme--dark.v-list .v-list-group--active:before,html .theme--dark.v-list .v-list-group--active:after{background:rgba(255,255,255,.12)}[data-omfx] .v-sheet.v-list, .v-menu__content .v-sheet.v-list, .v-tooltip__content .v-sheet.v-list, .v-dialog__content .v-sheet.v-list{border-radius:0}[data-omfx] .v-sheet.v-list:not(.v-sheet--outlined), .v-menu__content .v-sheet.v-list:not(.v-sheet--outlined), .v-tooltip__content .v-sheet.v-list:not(.v-sheet--outlined), .v-dialog__content .v-sheet.v-list:not(.v-sheet--outlined){box-shadow:0px 0px 0px 0px rgba(0,0,0,.2),0px 0px 0px 0px rgba(0,0,0,.14),0px 0px 0px 0px rgba(0,0,0,.12)}[data-omfx] .v-sheet.v-list.v-sheet--shaped, .v-menu__content .v-sheet.v-list.v-sheet--shaped, .v-tooltip__content .v-sheet.v-list.v-sheet--shaped, .v-dialog__content .v-sheet.v-list.v-sheet--shaped{border-radius:0}[data-omfx] .v-list, .v-menu__content .v-list, .v-tooltip__content .v-list, .v-dialog__content .v-list{display:block;padding:8px 0;position:static;transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}[data-omfx] .v-list--disabled, .v-menu__content .v-list--disabled, .v-tooltip__content .v-list--disabled, .v-dialog__content .v-list--disabled{pointer-events:none}[data-omfx] .v-list--flat .v-list-item:before, .v-menu__content .v-list--flat .v-list-item:before, .v-tooltip__content .v-list--flat .v-list-item:before, .v-dialog__content .v-list--flat .v-list-item:before{display:none}[data-omfx] .v-list--dense .v-subheader, .v-menu__content .v-list--dense .v-subheader, .v-tooltip__content .v-list--dense .v-subheader, .v-dialog__content .v-list--dense .v-subheader{font-size:.75rem;height:40px;padding:0 8px}[data-omfx] .v-list--nav .v-list-item:not(:last-child):not(:only-child), .v-menu__content .v-list--nav .v-list-item:not(:last-child):not(:only-child), .v-tooltip__content .v-list--nav .v-list-item:not(:last-child):not(:only-child), .v-dialog__content .v-list--nav .v-list-item:not(:last-child):not(:only-child),[data-omfx] .v-list--rounded .v-list-item:not(:last-child):not(:only-child), .v-menu__content .v-list--rounded .v-list-item:not(:last-child):not(:only-child), .v-tooltip__content .v-list--rounded .v-list-item:not(:last-child):not(:only-child), .v-dialog__content .v-list--rounded .v-list-item:not(:last-child):not(:only-child){margin-bottom:8px}[data-omfx] .v-list--nav.v-list--dense .v-list-item:not(:last-child):not(:only-child), .v-menu__content .v-list--nav.v-list--dense .v-list-item:not(:last-child):not(:only-child), .v-tooltip__content .v-list--nav.v-list--dense .v-list-item:not(:last-child):not(:only-child), .v-dialog__content .v-list--nav.v-list--dense .v-list-item:not(:last-child):not(:only-child),[data-omfx] .v-list--nav .v-list-item--dense:not(:last-child):not(:only-child), .v-menu__content .v-list--nav .v-list-item--dense:not(:last-child):not(:only-child), .v-tooltip__content .v-list--nav .v-list-item--dense:not(:last-child):not(:only-child), .v-dialog__content .v-list--nav .v-list-item--dense:not(:last-child):not(:only-child),[data-omfx] .v-list--rounded.v-list--dense .v-list-item:not(:last-child):not(:only-child), .v-menu__content .v-list--rounded.v-list--dense .v-list-item:not(:last-child):not(:only-child), .v-tooltip__content .v-list--rounded.v-list--dense .v-list-item:not(:last-child):not(:only-child), .v-dialog__content .v-list--rounded.v-list--dense .v-list-item:not(:last-child):not(:only-child),[data-omfx] .v-list--rounded .v-list-item--dense:not(:last-child):not(:only-child), .v-menu__content .v-list--rounded .v-list-item--dense:not(:last-child):not(:only-child), .v-tooltip__content .v-list--rounded .v-list-item--dense:not(:last-child):not(:only-child), .v-dialog__content .v-list--rounded .v-list-item--dense:not(:last-child):not(:only-child){margin-bottom:4px}[data-omfx] .v-list--nav, .v-menu__content .v-list--nav, .v-tooltip__content .v-list--nav, .v-dialog__content .v-list--nav{padding-left:8px;padding-right:8px}[data-omfx] .v-list--nav .v-list-item, .v-menu__content .v-list--nav .v-list-item, .v-tooltip__content .v-list--nav .v-list-item, .v-dialog__content .v-list--nav .v-list-item{padding:0 8px}[data-omfx] .v-list--nav .v-list-item, .v-menu__content .v-list--nav .v-list-item, .v-tooltip__content .v-list--nav .v-list-item, .v-dialog__content .v-list--nav .v-list-item,[data-omfx] .v-list--nav .v-list-item:before, .v-menu__content .v-list--nav .v-list-item:before, .v-tooltip__content .v-list--nav .v-list-item:before, .v-dialog__content .v-list--nav .v-list-item:before{border-radius:4px}html .v-application--is-ltr .v-list.v-sheet--shaped .v-list-item,html .v-application--is-ltr .v-list.v-sheet--shaped .v-list-item::before,html .v-application--is-ltr .v-list.v-sheet--shaped .v-list-item>.v-ripple__container{border-bottom-right-radius:32px !important;border-top-right-radius:32px !important}html .v-application--is-rtl .v-list.v-sheet--shaped .v-list-item,html .v-application--is-rtl .v-list.v-sheet--shaped .v-list-item::before,html .v-application--is-rtl .v-list.v-sheet--shaped .v-list-item>.v-ripple__container{border-bottom-left-radius:32px !important;border-top-left-radius:32px !important}html .v-application--is-ltr .v-list.v-sheet--shaped.v-list--two-line .v-list-item,html .v-application--is-ltr .v-list.v-sheet--shaped.v-list--two-line .v-list-item::before,html .v-application--is-ltr .v-list.v-sheet--shaped.v-list--two-line .v-list-item>.v-ripple__container{border-bottom-right-radius:42.6666666667px !important;border-top-right-radius:42.6666666667px !important}html .v-application--is-rtl .v-list.v-sheet--shaped.v-list--two-line .v-list-item,html .v-application--is-rtl .v-list.v-sheet--shaped.v-list--two-line .v-list-item::before,html .v-application--is-rtl .v-list.v-sheet--shaped.v-list--two-line .v-list-item>.v-ripple__container{border-bottom-left-radius:42.6666666667px !important;border-top-left-radius:42.6666666667px !important}html .v-application--is-ltr .v-list.v-sheet--shaped.v-list--three-line .v-list-item,html .v-application--is-ltr .v-list.v-sheet--shaped.v-list--three-line .v-list-item::before,html .v-application--is-ltr .v-list.v-sheet--shaped.v-list--three-line .v-list-item>.v-ripple__container{border-bottom-right-radius:58.6666666667px !important;border-top-right-radius:58.6666666667px !important}html .v-application--is-rtl .v-list.v-sheet--shaped.v-list--three-line .v-list-item,html .v-application--is-rtl .v-list.v-sheet--shaped.v-list--three-line .v-list-item::before,html .v-application--is-rtl .v-list.v-sheet--shaped.v-list--three-line .v-list-item>.v-ripple__container{border-bottom-left-radius:58.6666666667px !important;border-top-left-radius:58.6666666667px !important}html .v-application--is-ltr .v-list.v-sheet--shaped{padding-right:8px}html .v-application--is-rtl .v-list.v-sheet--shaped{padding-left:8px}[data-omfx] .v-list--rounded, .v-menu__content .v-list--rounded, .v-tooltip__content .v-list--rounded, .v-dialog__content .v-list--rounded{padding:8px}[data-omfx] .v-list--rounded .v-list-item, .v-menu__content .v-list--rounded .v-list-item, .v-tooltip__content .v-list--rounded .v-list-item, .v-dialog__content .v-list--rounded .v-list-item,[data-omfx] .v-list--rounded .v-list-item::before, .v-menu__content .v-list--rounded .v-list-item::before, .v-tooltip__content .v-list--rounded .v-list-item::before, .v-dialog__content .v-list--rounded .v-list-item::before,[data-omfx] .v-list--rounded .v-list-item>.v-ripple__container, .v-menu__content .v-list--rounded .v-list-item>.v-ripple__container, .v-tooltip__content .v-list--rounded .v-list-item>.v-ripple__container, .v-dialog__content .v-list--rounded .v-list-item>.v-ripple__container{border-radius:32px !important}[data-omfx] .v-list--rounded.v-list--two-line .v-list-item, .v-menu__content .v-list--rounded.v-list--two-line .v-list-item, .v-tooltip__content .v-list--rounded.v-list--two-line .v-list-item, .v-dialog__content .v-list--rounded.v-list--two-line .v-list-item,[data-omfx] .v-list--rounded.v-list--two-line .v-list-item::before, .v-menu__content .v-list--rounded.v-list--two-line .v-list-item::before, .v-tooltip__content .v-list--rounded.v-list--two-line .v-list-item::before, .v-dialog__content .v-list--rounded.v-list--two-line .v-list-item::before,[data-omfx] .v-list--rounded.v-list--two-line .v-list-item>.v-ripple__container, .v-menu__content .v-list--rounded.v-list--two-line .v-list-item>.v-ripple__container, .v-tooltip__content .v-list--rounded.v-list--two-line .v-list-item>.v-ripple__container, .v-dialog__content .v-list--rounded.v-list--two-line .v-list-item>.v-ripple__container{border-radius:42.6666666667px !important}[data-omfx] .v-list--rounded.v-list--three-line .v-list-item, .v-menu__content .v-list--rounded.v-list--three-line .v-list-item, .v-tooltip__content .v-list--rounded.v-list--three-line .v-list-item, .v-dialog__content .v-list--rounded.v-list--three-line .v-list-item,[data-omfx] .v-list--rounded.v-list--three-line .v-list-item::before, .v-menu__content .v-list--rounded.v-list--three-line .v-list-item::before, .v-tooltip__content .v-list--rounded.v-list--three-line .v-list-item::before, .v-dialog__content .v-list--rounded.v-list--three-line .v-list-item::before,[data-omfx] .v-list--rounded.v-list--three-line .v-list-item>.v-ripple__container, .v-menu__content .v-list--rounded.v-list--three-line .v-list-item>.v-ripple__container, .v-tooltip__content .v-list--rounded.v-list--three-line .v-list-item>.v-ripple__container, .v-dialog__content .v-list--rounded.v-list--three-line .v-list-item>.v-ripple__container{border-radius:58.6666666667px !important}[data-omfx] .v-list--subheader, .v-menu__content .v-list--subheader, .v-tooltip__content .v-list--subheader, .v-dialog__content .v-list--subheader{padding-top:0}
|
|
40
|
-
|
|
41
|
-
html .theme--light.v-list-item--disabled{color:rgba(0,0,0,.38)}html .theme--light.v-list-item:not(.v-list-item--active):not(.v-list-item--disabled){color:rgba(0,0,0,.87)}html .theme--light.v-list-item .v-list-item__mask{color:rgba(0,0,0,.38);background:#eee}html .theme--light.v-list-item:not(.v-list-item--disabled) .v-list-item__subtitle,html .theme--light.v-list-item:not(.v-list-item--disabled) .v-list-item__action-text{color:rgba(0,0,0,.6)}html .theme--light.v-list-item:hover::before{opacity:.04}html .theme--light.v-list-item:focus::before{opacity:.12}html .theme--light.v-list-item--active:hover::before,html .theme--light.v-list-item--active::before{opacity:.12}html .theme--light.v-list-item--active:focus::before{opacity:.16}html .theme--light.v-list-item.v-list-item--highlighted::before{opacity:.16}html .theme--dark.v-list-item--disabled{color:rgba(255,255,255,.5)}html .theme--dark.v-list-item:not(.v-list-item--active):not(.v-list-item--disabled){color:#fff}html .theme--dark.v-list-item .v-list-item__mask{color:rgba(255,255,255,.5);background:#494949}html .theme--dark.v-list-item:not(.v-list-item--disabled) .v-list-item__subtitle,html .theme--dark.v-list-item:not(.v-list-item--disabled) .v-list-item__action-text{color:rgba(255,255,255,.7)}html .theme--dark.v-list-item:hover::before{opacity:.08}html .theme--dark.v-list-item:focus::before{opacity:.24}html .theme--dark.v-list-item--active:hover::before,html .theme--dark.v-list-item--active::before{opacity:.24}html .theme--dark.v-list-item--active:focus::before{opacity:.32}html .theme--dark.v-list-item.v-list-item--highlighted::before{opacity:.32}[data-omfx] .v-list-item, .v-menu__content .v-list-item, .v-tooltip__content .v-list-item, .v-dialog__content .v-list-item{align-items:center;display:flex;flex:1 1 100%;letter-spacing:normal;min-height:48px;outline:none;padding:0 16px;position:relative;text-decoration:none}[data-omfx] .v-list-item--disabled, .v-menu__content .v-list-item--disabled, .v-tooltip__content .v-list-item--disabled, .v-dialog__content .v-list-item--disabled{pointer-events:none}[data-omfx] .v-list-item--selectable, .v-menu__content .v-list-item--selectable, .v-tooltip__content .v-list-item--selectable, .v-dialog__content .v-list-item--selectable{-webkit-user-select:auto;-ms-user-select:auto;user-select:auto}[data-omfx] .v-list-item::after, .v-menu__content .v-list-item::after, .v-tooltip__content .v-list-item::after, .v-dialog__content .v-list-item::after{content:"";min-height:inherit;font-size:0}[data-omfx] .v-list-item__action, .v-menu__content .v-list-item__action, .v-tooltip__content .v-list-item__action, .v-dialog__content .v-list-item__action{align-self:center;margin:12px 0}[data-omfx] .v-list-item__action .v-input, .v-menu__content .v-list-item__action .v-input, .v-tooltip__content .v-list-item__action .v-input, .v-dialog__content .v-list-item__action .v-input,[data-omfx] .v-list-item__action .v-input__control, .v-menu__content .v-list-item__action .v-input__control, .v-tooltip__content .v-list-item__action .v-input__control, .v-dialog__content .v-list-item__action .v-input__control,[data-omfx] .v-list-item__action .v-input__slot, .v-menu__content .v-list-item__action .v-input__slot, .v-tooltip__content .v-list-item__action .v-input__slot, .v-dialog__content .v-list-item__action .v-input__slot,[data-omfx] .v-list-item__action .v-input--selection-controls__input, .v-menu__content .v-list-item__action .v-input--selection-controls__input, .v-tooltip__content .v-list-item__action .v-input--selection-controls__input, .v-dialog__content .v-list-item__action .v-input--selection-controls__input{margin:0 !important}[data-omfx] .v-list-item__action .v-input, .v-menu__content .v-list-item__action .v-input, .v-tooltip__content .v-list-item__action .v-input, .v-dialog__content .v-list-item__action .v-input{padding:0}[data-omfx] .v-list-item__action .v-input .v-messages, .v-menu__content .v-list-item__action .v-input .v-messages, .v-tooltip__content .v-list-item__action .v-input .v-messages, .v-dialog__content .v-list-item__action .v-input .v-messages{display:none}[data-omfx] .v-list-item__action-text, .v-menu__content .v-list-item__action-text, .v-tooltip__content .v-list-item__action-text, .v-dialog__content .v-list-item__action-text{font-size:.75rem}[data-omfx] .v-list-item__avatar, .v-menu__content .v-list-item__avatar, .v-tooltip__content .v-list-item__avatar, .v-dialog__content .v-list-item__avatar{align-self:center;justify-content:flex-start;margin-bottom:8px;margin-top:8px}[data-omfx] .v-list-item__avatar.v-list-item__avatar--horizontal, .v-menu__content .v-list-item__avatar.v-list-item__avatar--horizontal, .v-tooltip__content .v-list-item__avatar.v-list-item__avatar--horizontal, .v-dialog__content .v-list-item__avatar.v-list-item__avatar--horizontal{margin-bottom:8px;margin-top:8px}html .v-application--is-ltr .v-list-item__avatar.v-list-item__avatar--horizontal:first-child{margin-left:-16px}html .v-application--is-rtl .v-list-item__avatar.v-list-item__avatar--horizontal:first-child{margin-right:-16px}html .v-application--is-ltr .v-list-item__avatar.v-list-item__avatar--horizontal:last-child{margin-left:-16px}html .v-application--is-rtl .v-list-item__avatar.v-list-item__avatar--horizontal:last-child{margin-right:-16px}[data-omfx] .v-list-item__content, .v-menu__content .v-list-item__content, .v-tooltip__content .v-list-item__content, .v-dialog__content .v-list-item__content{align-items:center;align-self:center;display:flex;flex-wrap:wrap;flex:1 1;overflow:hidden;padding:12px 0}[data-omfx] .v-list-item__content>*, .v-menu__content .v-list-item__content>*, .v-tooltip__content .v-list-item__content>*, .v-dialog__content .v-list-item__content>*{line-height:1.1;flex:1 0 100%}[data-omfx] .v-list-item__content>*:not(:last-child), .v-menu__content .v-list-item__content>*:not(:last-child), .v-tooltip__content .v-list-item__content>*:not(:last-child), .v-dialog__content .v-list-item__content>*:not(:last-child){margin-bottom:2px}[data-omfx] .v-list-item__icon, .v-menu__content .v-list-item__icon, .v-tooltip__content .v-list-item__icon, .v-dialog__content .v-list-item__icon{align-self:flex-start;margin:16px 0}html .v-application--is-ltr .v-list-item__action:last-of-type:not(:only-child),html .v-application--is-ltr .v-list-item__avatar:last-of-type:not(:only-child),html .v-application--is-ltr .v-list-item__icon:last-of-type:not(:only-child){margin-left:16px}html .v-application--is-rtl .v-list-item__action:last-of-type:not(:only-child),html .v-application--is-rtl .v-list-item__avatar:last-of-type:not(:only-child),html .v-application--is-rtl .v-list-item__icon:last-of-type:not(:only-child){margin-right:16px}html .v-application--is-ltr .v-list-item__avatar:first-child{margin-right:16px}html .v-application--is-rtl .v-list-item__avatar:first-child{margin-left:16px}html .v-application--is-ltr .v-list-item__action:first-child,html .v-application--is-ltr .v-list-item__icon:first-child{margin-right:32px}html .v-application--is-rtl .v-list-item__action:first-child,html .v-application--is-rtl .v-list-item__icon:first-child{margin-left:32px}[data-omfx] .v-list-item__action, .v-menu__content .v-list-item__action, .v-tooltip__content .v-list-item__action, .v-dialog__content .v-list-item__action,[data-omfx] .v-list-item__avatar, .v-menu__content .v-list-item__avatar, .v-tooltip__content .v-list-item__avatar, .v-dialog__content .v-list-item__avatar,[data-omfx] .v-list-item__icon, .v-menu__content .v-list-item__icon, .v-tooltip__content .v-list-item__icon, .v-dialog__content .v-list-item__icon{display:inline-flex;min-width:24px}[data-omfx] .v-list-item .v-list-item__title, .v-menu__content .v-list-item .v-list-item__title, .v-tooltip__content .v-list-item .v-list-item__title, .v-dialog__content .v-list-item .v-list-item__title,[data-omfx] .v-list-item .v-list-item__subtitle, .v-menu__content .v-list-item .v-list-item__subtitle, .v-tooltip__content .v-list-item .v-list-item__subtitle, .v-dialog__content .v-list-item .v-list-item__subtitle{line-height:1.2}[data-omfx] .v-list-item__title, .v-menu__content .v-list-item__title, .v-tooltip__content .v-list-item__title, .v-dialog__content .v-list-item__title,[data-omfx] .v-list-item__subtitle, .v-menu__content .v-list-item__subtitle, .v-tooltip__content .v-list-item__subtitle, .v-dialog__content .v-list-item__subtitle{flex:1 1 100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}[data-omfx] .v-list-item__title, .v-menu__content .v-list-item__title, .v-tooltip__content .v-list-item__title, .v-dialog__content .v-list-item__title{align-self:center;font-size:1rem}[data-omfx] .v-list-item__title>.v-badge, .v-menu__content .v-list-item__title>.v-badge, .v-tooltip__content .v-list-item__title>.v-badge, .v-dialog__content .v-list-item__title>.v-badge{margin-top:16px}[data-omfx] .v-list-item__subtitle, .v-menu__content .v-list-item__subtitle, .v-tooltip__content .v-list-item__subtitle, .v-dialog__content .v-list-item__subtitle{font-size:.875rem}[data-omfx] .v-list-item--dense, .v-menu__content .v-list-item--dense, .v-tooltip__content .v-list-item--dense, .v-dialog__content .v-list-item--dense,[data-omfx] .v-list--dense .v-list-item, .v-menu__content .v-list--dense .v-list-item, .v-tooltip__content .v-list--dense .v-list-item, .v-dialog__content .v-list--dense .v-list-item{min-height:40px}[data-omfx] .v-list-item--dense .v-list-item__icon, .v-menu__content .v-list-item--dense .v-list-item__icon, .v-tooltip__content .v-list-item--dense .v-list-item__icon, .v-dialog__content .v-list-item--dense .v-list-item__icon,[data-omfx] .v-list--dense .v-list-item .v-list-item__icon, .v-menu__content .v-list--dense .v-list-item .v-list-item__icon, .v-tooltip__content .v-list--dense .v-list-item .v-list-item__icon, .v-dialog__content .v-list--dense .v-list-item .v-list-item__icon{height:24px;margin-top:8px;margin-bottom:8px}[data-omfx] .v-list-item--dense .v-list-item__content, .v-menu__content .v-list-item--dense .v-list-item__content, .v-tooltip__content .v-list-item--dense .v-list-item__content, .v-dialog__content .v-list-item--dense .v-list-item__content,[data-omfx] .v-list--dense .v-list-item .v-list-item__content, .v-menu__content .v-list--dense .v-list-item .v-list-item__content, .v-tooltip__content .v-list--dense .v-list-item .v-list-item__content, .v-dialog__content .v-list--dense .v-list-item .v-list-item__content{padding:8px 0}[data-omfx] .v-list-item--dense .v-list-item__title, .v-menu__content .v-list-item--dense .v-list-item__title, .v-tooltip__content .v-list-item--dense .v-list-item__title, .v-dialog__content .v-list-item--dense .v-list-item__title,[data-omfx] .v-list-item--dense .v-list-item__subtitle, .v-menu__content .v-list-item--dense .v-list-item__subtitle, .v-tooltip__content .v-list-item--dense .v-list-item__subtitle, .v-dialog__content .v-list-item--dense .v-list-item__subtitle,[data-omfx] .v-list--dense .v-list-item .v-list-item__title, .v-menu__content .v-list--dense .v-list-item .v-list-item__title, .v-tooltip__content .v-list--dense .v-list-item .v-list-item__title, .v-dialog__content .v-list--dense .v-list-item .v-list-item__title,[data-omfx] .v-list--dense .v-list-item .v-list-item__subtitle, .v-menu__content .v-list--dense .v-list-item .v-list-item__subtitle, .v-tooltip__content .v-list--dense .v-list-item .v-list-item__subtitle, .v-dialog__content .v-list--dense .v-list-item .v-list-item__subtitle{font-size:.8125rem;font-weight:500;line-height:1rem}[data-omfx] .v-list-item--dense.v-list-item--two-line, .v-menu__content .v-list-item--dense.v-list-item--two-line, .v-tooltip__content .v-list-item--dense.v-list-item--two-line, .v-dialog__content .v-list-item--dense.v-list-item--two-line,[data-omfx] .v-list--dense .v-list-item.v-list-item--two-line, .v-menu__content .v-list--dense .v-list-item.v-list-item--two-line, .v-tooltip__content .v-list--dense .v-list-item.v-list-item--two-line, .v-dialog__content .v-list--dense .v-list-item.v-list-item--two-line{min-height:60px}[data-omfx] .v-list-item--dense.v-list-item--three-line, .v-menu__content .v-list-item--dense.v-list-item--three-line, .v-tooltip__content .v-list-item--dense.v-list-item--three-line, .v-dialog__content .v-list-item--dense.v-list-item--three-line,[data-omfx] .v-list--dense .v-list-item.v-list-item--three-line, .v-menu__content .v-list--dense .v-list-item.v-list-item--three-line, .v-tooltip__content .v-list--dense .v-list-item.v-list-item--three-line, .v-dialog__content .v-list--dense .v-list-item.v-list-item--three-line{min-height:76px}[data-omfx] .v-list-item--link, .v-menu__content .v-list-item--link, .v-tooltip__content .v-list-item--link, .v-dialog__content .v-list-item--link{cursor:pointer;-webkit-user-select:none;-ms-user-select:none;user-select:none}[data-omfx] .v-list-item--link:before, .v-menu__content .v-list-item--link:before, .v-tooltip__content .v-list-item--link:before, .v-dialog__content .v-list-item--link:before{background-color:currentColor;bottom:0;content:"";left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0;transition:.3s cubic-bezier(0.25, 0.8, 0.5, 1)}[data-omfx] .v-list .v-list-item--active, .v-menu__content .v-list .v-list-item--active, .v-tooltip__content .v-list .v-list-item--active, .v-dialog__content .v-list .v-list-item--active{color:inherit}[data-omfx] .v-list .v-list-item--active .v-icon, .v-menu__content .v-list .v-list-item--active .v-icon, .v-tooltip__content .v-list .v-list-item--active .v-icon, .v-dialog__content .v-list .v-list-item--active .v-icon{color:inherit}[data-omfx] .v-list-item__action--stack, .v-menu__content .v-list-item__action--stack, .v-tooltip__content .v-list-item__action--stack, .v-dialog__content .v-list-item__action--stack{align-items:flex-end;align-self:stretch;justify-content:space-between;white-space:nowrap;flex-direction:column}[data-omfx] .v-list--two-line .v-list-item .v-list-item__avatar:not(.v-list-item__avatar--horizontal), .v-menu__content .v-list--two-line .v-list-item .v-list-item__avatar:not(.v-list-item__avatar--horizontal), .v-tooltip__content .v-list--two-line .v-list-item .v-list-item__avatar:not(.v-list-item__avatar--horizontal), .v-dialog__content .v-list--two-line .v-list-item .v-list-item__avatar:not(.v-list-item__avatar--horizontal),[data-omfx] .v-list--two-line .v-list-item .v-list-item__icon, .v-menu__content .v-list--two-line .v-list-item .v-list-item__icon, .v-tooltip__content .v-list--two-line .v-list-item .v-list-item__icon, .v-dialog__content .v-list--two-line .v-list-item .v-list-item__icon,[data-omfx] .v-list--three-line .v-list-item .v-list-item__avatar:not(.v-list-item__avatar--horizontal), .v-menu__content .v-list--three-line .v-list-item .v-list-item__avatar:not(.v-list-item__avatar--horizontal), .v-tooltip__content .v-list--three-line .v-list-item .v-list-item__avatar:not(.v-list-item__avatar--horizontal), .v-dialog__content .v-list--three-line .v-list-item .v-list-item__avatar:not(.v-list-item__avatar--horizontal),[data-omfx] .v-list--three-line .v-list-item .v-list-item__icon, .v-menu__content .v-list--three-line .v-list-item .v-list-item__icon, .v-tooltip__content .v-list--three-line .v-list-item .v-list-item__icon, .v-dialog__content .v-list--three-line .v-list-item .v-list-item__icon,[data-omfx] .v-list-item--two-line .v-list-item__avatar:not(.v-list-item__avatar--horizontal), .v-menu__content .v-list-item--two-line .v-list-item__avatar:not(.v-list-item__avatar--horizontal), .v-tooltip__content .v-list-item--two-line .v-list-item__avatar:not(.v-list-item__avatar--horizontal), .v-dialog__content .v-list-item--two-line .v-list-item__avatar:not(.v-list-item__avatar--horizontal),[data-omfx] .v-list-item--two-line .v-list-item__icon, .v-menu__content .v-list-item--two-line .v-list-item__icon, .v-tooltip__content .v-list-item--two-line .v-list-item__icon, .v-dialog__content .v-list-item--two-line .v-list-item__icon,[data-omfx] .v-list-item--three-line .v-list-item__avatar:not(.v-list-item__avatar--horizontal), .v-menu__content .v-list-item--three-line .v-list-item__avatar:not(.v-list-item__avatar--horizontal), .v-tooltip__content .v-list-item--three-line .v-list-item__avatar:not(.v-list-item__avatar--horizontal), .v-dialog__content .v-list-item--three-line .v-list-item__avatar:not(.v-list-item__avatar--horizontal),[data-omfx] .v-list-item--three-line .v-list-item__icon, .v-menu__content .v-list-item--three-line .v-list-item__icon, .v-tooltip__content .v-list-item--three-line .v-list-item__icon, .v-dialog__content .v-list-item--three-line .v-list-item__icon{margin-bottom:16px;margin-top:16px}[data-omfx] .v-list--two-line .v-list-item, .v-menu__content .v-list--two-line .v-list-item, .v-tooltip__content .v-list--two-line .v-list-item, .v-dialog__content .v-list--two-line .v-list-item,[data-omfx] .v-list-item--two-line, .v-menu__content .v-list-item--two-line, .v-tooltip__content .v-list-item--two-line, .v-dialog__content .v-list-item--two-line{min-height:64px}[data-omfx] .v-list--two-line .v-list-item .v-list-item__icon, .v-menu__content .v-list--two-line .v-list-item .v-list-item__icon, .v-tooltip__content .v-list--two-line .v-list-item .v-list-item__icon, .v-dialog__content .v-list--two-line .v-list-item .v-list-item__icon,[data-omfx] .v-list-item--two-line .v-list-item__icon, .v-menu__content .v-list-item--two-line .v-list-item__icon, .v-tooltip__content .v-list-item--two-line .v-list-item__icon, .v-dialog__content .v-list-item--two-line .v-list-item__icon{margin-bottom:32px}[data-omfx] .v-list--three-line .v-list-item, .v-menu__content .v-list--three-line .v-list-item, .v-tooltip__content .v-list--three-line .v-list-item, .v-dialog__content .v-list--three-line .v-list-item,[data-omfx] .v-list-item--three-line, .v-menu__content .v-list-item--three-line, .v-tooltip__content .v-list-item--three-line, .v-dialog__content .v-list-item--three-line{min-height:88px}[data-omfx] .v-list--three-line .v-list-item .v-list-item__avatar, .v-menu__content .v-list--three-line .v-list-item .v-list-item__avatar, .v-tooltip__content .v-list--three-line .v-list-item .v-list-item__avatar, .v-dialog__content .v-list--three-line .v-list-item .v-list-item__avatar,[data-omfx] .v-list--three-line .v-list-item .v-list-item__action, .v-menu__content .v-list--three-line .v-list-item .v-list-item__action, .v-tooltip__content .v-list--three-line .v-list-item .v-list-item__action, .v-dialog__content .v-list--three-line .v-list-item .v-list-item__action,[data-omfx] .v-list-item--three-line .v-list-item__avatar, .v-menu__content .v-list-item--three-line .v-list-item__avatar, .v-tooltip__content .v-list-item--three-line .v-list-item__avatar, .v-dialog__content .v-list-item--three-line .v-list-item__avatar,[data-omfx] .v-list-item--three-line .v-list-item__action, .v-menu__content .v-list-item--three-line .v-list-item__action, .v-tooltip__content .v-list-item--three-line .v-list-item__action, .v-dialog__content .v-list-item--three-line .v-list-item__action{align-self:flex-start;margin-top:16px;margin-bottom:16px}[data-omfx] .v-list--three-line .v-list-item .v-list-item__content, .v-menu__content .v-list--three-line .v-list-item .v-list-item__content, .v-tooltip__content .v-list--three-line .v-list-item .v-list-item__content, .v-dialog__content .v-list--three-line .v-list-item .v-list-item__content,[data-omfx] .v-list-item--three-line .v-list-item__content, .v-menu__content .v-list-item--three-line .v-list-item__content, .v-tooltip__content .v-list-item--three-line .v-list-item__content, .v-dialog__content .v-list-item--three-line .v-list-item__content{align-self:stretch}[data-omfx] .v-list--three-line .v-list-item .v-list-item__subtitle, .v-menu__content .v-list--three-line .v-list-item .v-list-item__subtitle, .v-tooltip__content .v-list--three-line .v-list-item .v-list-item__subtitle, .v-dialog__content .v-list--three-line .v-list-item .v-list-item__subtitle,[data-omfx] .v-list-item--three-line .v-list-item__subtitle, .v-menu__content .v-list-item--three-line .v-list-item__subtitle, .v-tooltip__content .v-list-item--three-line .v-list-item__subtitle, .v-dialog__content .v-list-item--three-line .v-list-item__subtitle{white-space:initial;-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box}
|
|
42
|
-
|
|
124
|
+
.v-list {
|
|
125
|
+
overflow: auto;
|
|
126
|
+
padding: 8px 0;
|
|
127
|
+
position: relative;
|
|
128
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
129
|
+
border-style: solid;
|
|
130
|
+
border-width: 0;
|
|
131
|
+
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
132
|
+
border-radius: 0;
|
|
133
|
+
background: rgba(var(--v-theme-surface));
|
|
134
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
135
|
+
}
|
|
136
|
+
.v-list--border {
|
|
137
|
+
border-width: thin;
|
|
138
|
+
box-shadow: none;
|
|
139
|
+
}
|
|
140
|
+
.v-list--disabled {
|
|
141
|
+
pointer-events: none;
|
|
142
|
+
user-select: none;
|
|
143
|
+
}
|
|
144
|
+
.v-list--nav {
|
|
145
|
+
padding-inline-start: 8px;
|
|
146
|
+
padding-inline-end: 8px;
|
|
147
|
+
}
|
|
148
|
+
.v-navigation-drawer--rail:not(.v-navigation-drawer--is-hovering) .v-list .v-avatar {
|
|
149
|
+
--v-avatar-height: 24px;
|
|
150
|
+
}
|
|
151
|
+
.v-list--rounded {
|
|
152
|
+
border-radius: 4px;
|
|
153
|
+
}
|
|
154
|
+
.v-list--subheader {
|
|
155
|
+
padding-top: 0;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.v-list-img {
|
|
159
|
+
border-radius: inherit;
|
|
160
|
+
display: flex;
|
|
161
|
+
height: 100%;
|
|
162
|
+
left: 0;
|
|
163
|
+
overflow: hidden;
|
|
164
|
+
position: absolute;
|
|
165
|
+
top: 0;
|
|
166
|
+
width: 100%;
|
|
167
|
+
z-index: -1;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.v-list-subheader {
|
|
171
|
+
align-items: center;
|
|
172
|
+
background: inherit;
|
|
173
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
174
|
+
display: flex;
|
|
175
|
+
font-size: 0.875rem;
|
|
176
|
+
font-weight: 400;
|
|
177
|
+
line-height: 1.375rem;
|
|
178
|
+
padding-inline-end: 16px;
|
|
179
|
+
min-height: 40px;
|
|
180
|
+
transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
|
|
181
|
+
}
|
|
182
|
+
.v-list-subheader__text {
|
|
183
|
+
overflow: hidden;
|
|
184
|
+
text-overflow: ellipsis;
|
|
185
|
+
white-space: nowrap;
|
|
186
|
+
}
|
|
187
|
+
.v-list--density-default .v-list-subheader {
|
|
188
|
+
min-height: 40px;
|
|
189
|
+
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.v-list--density-comfortable .v-list-subheader {
|
|
193
|
+
min-height: 36px;
|
|
194
|
+
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
|
195
|
+
}
|
|
43
196
|
|
|
44
|
-
|
|
197
|
+
.v-list--density-compact .v-list-subheader {
|
|
198
|
+
min-height: 32px;
|
|
199
|
+
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.v-list-subheader--inset {
|
|
203
|
+
--indent-padding: 56px;
|
|
204
|
+
}
|
|
205
|
+
.v-list--nav .v-list-subheader {
|
|
206
|
+
font-size: 0.75rem;
|
|
207
|
+
}
|
|
208
|
+
.v-list-subheader--sticky {
|
|
209
|
+
background: inherit;
|
|
210
|
+
left: 0;
|
|
211
|
+
position: sticky;
|
|
212
|
+
top: 0;
|
|
213
|
+
z-index: 1;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.v-list__overlay {
|
|
217
|
+
background-color: currentColor;
|
|
218
|
+
border-radius: inherit;
|
|
219
|
+
bottom: 0;
|
|
220
|
+
left: 0;
|
|
221
|
+
opacity: 0;
|
|
222
|
+
pointer-events: none;
|
|
223
|
+
position: absolute;
|
|
224
|
+
right: 0;
|
|
225
|
+
top: 0;
|
|
226
|
+
transition: opacity 0.2s ease-in-out;
|
|
227
|
+
}
|
|
228
|
+
.v-list-item {
|
|
229
|
+
align-items: center;
|
|
230
|
+
display: grid;
|
|
231
|
+
flex: none;
|
|
232
|
+
grid-template-areas: "prepend content append";
|
|
233
|
+
grid-template-columns: max-content auto max-content;
|
|
234
|
+
outline: none;
|
|
235
|
+
max-width: 100%;
|
|
236
|
+
padding: 4px 16px;
|
|
237
|
+
position: relative;
|
|
238
|
+
text-decoration: none;
|
|
239
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
240
|
+
border-style: solid;
|
|
241
|
+
border-width: 0;
|
|
242
|
+
border-radius: 0;
|
|
243
|
+
}
|
|
244
|
+
.v-list-item--border {
|
|
245
|
+
border-width: thin;
|
|
246
|
+
box-shadow: none;
|
|
247
|
+
}
|
|
248
|
+
.v-list-item:hover > .v-list-item__overlay {
|
|
249
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
250
|
+
}
|
|
251
|
+
.v-list-item:focus-visible > .v-list-item__overlay {
|
|
252
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
253
|
+
}
|
|
254
|
+
@supports not selector(:focus-visible) {
|
|
255
|
+
.v-list-item:focus > .v-list-item__overlay {
|
|
256
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
.v-list-item--active > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true] > .v-list-item__overlay {
|
|
260
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
261
|
+
}
|
|
262
|
+
.v-list-item--active:hover > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-list-item__overlay {
|
|
263
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
264
|
+
}
|
|
265
|
+
.v-list-item--active:focus-visible > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-list-item__overlay {
|
|
266
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
267
|
+
}
|
|
268
|
+
@supports not selector(:focus-visible) {
|
|
269
|
+
.v-list-item--active:focus > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-list-item__overlay {
|
|
270
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
.v-list-item--variant-plain, .v-list-item--variant-outlined, .v-list-item--variant-text, .v-list-item--variant-tonal {
|
|
274
|
+
background: transparent;
|
|
275
|
+
color: inherit;
|
|
276
|
+
}
|
|
277
|
+
.v-list-item--variant-plain {
|
|
278
|
+
opacity: 0.62;
|
|
279
|
+
}
|
|
280
|
+
.v-list-item--variant-plain:focus, .v-list-item--variant-plain:hover {
|
|
281
|
+
opacity: 1;
|
|
282
|
+
}
|
|
283
|
+
.v-list-item--variant-plain .v-list-item__overlay {
|
|
284
|
+
display: none;
|
|
285
|
+
}
|
|
286
|
+
.v-list-item--variant-elevated, .v-list-item--variant-flat {
|
|
287
|
+
background: rgba(var(--v-theme-surface));
|
|
288
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
289
|
+
}
|
|
290
|
+
.v-list-item--variant-elevated {
|
|
291
|
+
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-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
292
|
+
}
|
|
293
|
+
.v-list-item--variant-flat {
|
|
294
|
+
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
295
|
+
}
|
|
296
|
+
.v-list-item--variant-outlined {
|
|
297
|
+
border: thin solid currentColor;
|
|
298
|
+
}
|
|
299
|
+
.v-list-item--variant-text .v-list-item__overlay {
|
|
300
|
+
background: currentColor;
|
|
301
|
+
}
|
|
302
|
+
.v-list-item--variant-tonal .v-list-item__underlay {
|
|
303
|
+
background: currentColor;
|
|
304
|
+
opacity: var(--v-activated-opacity);
|
|
305
|
+
border-radius: inherit;
|
|
306
|
+
position: absolute;
|
|
307
|
+
top: 0;
|
|
308
|
+
right: 0;
|
|
309
|
+
bottom: 0;
|
|
310
|
+
left: 0;
|
|
311
|
+
pointer-events: none;
|
|
312
|
+
}
|
|
313
|
+
.v-list-item__prepend > .v-icon, .v-list-item__append > .v-icon {
|
|
314
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
315
|
+
}
|
|
316
|
+
.v-list-item--active .v-list-item__prepend > .v-icon,
|
|
317
|
+
.v-list-item--active .v-list-item__append > .v-icon {
|
|
318
|
+
opacity: 1;
|
|
319
|
+
}
|
|
320
|
+
.v-list-item--rounded {
|
|
321
|
+
border-radius: 4px;
|
|
322
|
+
}
|
|
323
|
+
.v-list-item--disabled {
|
|
324
|
+
pointer-events: none;
|
|
325
|
+
user-select: none;
|
|
326
|
+
opacity: 0.6;
|
|
327
|
+
}
|
|
328
|
+
.v-list-item--link {
|
|
329
|
+
cursor: pointer;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.v-list-item__prepend {
|
|
333
|
+
align-items: center;
|
|
334
|
+
align-self: center;
|
|
335
|
+
display: flex;
|
|
336
|
+
grid-area: prepend;
|
|
337
|
+
}
|
|
338
|
+
.v-list-item__prepend > .v-avatar {
|
|
339
|
+
margin-inline-end: 16px;
|
|
340
|
+
}
|
|
341
|
+
.v-list-item__prepend > .v-icon {
|
|
342
|
+
margin-inline-end: 32px;
|
|
343
|
+
}
|
|
344
|
+
.v-list-item--three-line .v-list-item__prepend {
|
|
345
|
+
align-self: start;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.v-list-item__append {
|
|
349
|
+
align-self: center;
|
|
350
|
+
display: flex;
|
|
351
|
+
align-items: center;
|
|
352
|
+
grid-area: append;
|
|
353
|
+
}
|
|
354
|
+
.v-list-item__append > .v-avatar {
|
|
355
|
+
margin-inline-start: 16px;
|
|
356
|
+
}
|
|
357
|
+
.v-list-item__append > .v-icon {
|
|
358
|
+
margin-inline-start: 32px;
|
|
359
|
+
}
|
|
360
|
+
.v-list-item--three-line .v-list-item__append {
|
|
361
|
+
align-self: start;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.v-list-item__content {
|
|
365
|
+
align-self: center;
|
|
366
|
+
grid-area: content;
|
|
367
|
+
overflow: hidden;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.v-list-item-action {
|
|
371
|
+
align-self: center;
|
|
372
|
+
display: flex;
|
|
373
|
+
align-items: center;
|
|
374
|
+
grid-area: prepend;
|
|
375
|
+
flex: none;
|
|
376
|
+
transition: inherit;
|
|
377
|
+
transition-property: height, width;
|
|
378
|
+
}
|
|
379
|
+
.v-list-item-action--start {
|
|
380
|
+
margin-inline-end: 12px;
|
|
381
|
+
}
|
|
382
|
+
.v-list-item-action--end {
|
|
383
|
+
margin-inline-start: 12px;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.v-list-item-media {
|
|
387
|
+
margin-top: 0;
|
|
388
|
+
margin-bottom: 0;
|
|
389
|
+
}
|
|
390
|
+
.v-list-item-media--start {
|
|
391
|
+
margin-inline-end: 16px;
|
|
392
|
+
}
|
|
393
|
+
.v-list-item-media--end {
|
|
394
|
+
margin-inline-start: 16px;
|
|
395
|
+
}
|
|
396
|
+
.v-list-item--two-line .v-list-item-media {
|
|
397
|
+
margin-top: -4px;
|
|
398
|
+
margin-bottom: -4px;
|
|
399
|
+
}
|
|
400
|
+
.v-list-item--three-line .v-list-item-media {
|
|
401
|
+
margin-top: 0;
|
|
402
|
+
margin-bottom: 0;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.v-list-item-subtitle {
|
|
406
|
+
-webkit-box-orient: vertical;
|
|
407
|
+
display: -webkit-box;
|
|
408
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
409
|
+
overflow: hidden;
|
|
410
|
+
padding: 0;
|
|
411
|
+
text-overflow: ellipsis;
|
|
412
|
+
font-size: 0.875rem;
|
|
413
|
+
font-weight: 400;
|
|
414
|
+
letter-spacing: 0.0178571429em;
|
|
415
|
+
line-height: 1rem;
|
|
416
|
+
text-transform: none;
|
|
417
|
+
}
|
|
418
|
+
.v-list-item--one-line .v-list-item-subtitle {
|
|
419
|
+
-webkit-line-clamp: 1;
|
|
420
|
+
}
|
|
421
|
+
.v-list-item--two-line .v-list-item-subtitle {
|
|
422
|
+
-webkit-line-clamp: 2;
|
|
423
|
+
}
|
|
424
|
+
.v-list-item--three-line .v-list-item-subtitle {
|
|
425
|
+
-webkit-line-clamp: 3;
|
|
426
|
+
}
|
|
427
|
+
.v-list-item--nav .v-list-item-subtitle {
|
|
428
|
+
font-size: 0.75rem;
|
|
429
|
+
font-weight: 400;
|
|
430
|
+
letter-spacing: 0.0178571429em;
|
|
431
|
+
line-height: 1rem;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.v-list-item-title {
|
|
435
|
+
hyphens: auto;
|
|
436
|
+
overflow-wrap: normal;
|
|
437
|
+
overflow: hidden;
|
|
438
|
+
padding: 0;
|
|
439
|
+
white-space: nowrap;
|
|
440
|
+
text-overflow: ellipsis;
|
|
441
|
+
word-break: normal;
|
|
442
|
+
word-wrap: break-word;
|
|
443
|
+
font-size: 1rem;
|
|
444
|
+
font-weight: 400;
|
|
445
|
+
letter-spacing: 0.009375em;
|
|
446
|
+
line-height: 1.5rem;
|
|
447
|
+
text-transform: none;
|
|
448
|
+
}
|
|
449
|
+
.v-list-item--nav .v-list-item-title {
|
|
450
|
+
font-size: 0.8125rem;
|
|
451
|
+
font-weight: 500;
|
|
452
|
+
letter-spacing: normal;
|
|
453
|
+
line-height: 1rem;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.v-list-item--density-default {
|
|
457
|
+
min-height: 40px;
|
|
458
|
+
}
|
|
459
|
+
.v-list-item--density-default.v-list-item--one-line {
|
|
460
|
+
min-height: 48px;
|
|
461
|
+
padding-top: 4px;
|
|
462
|
+
padding-bottom: 4px;
|
|
463
|
+
}
|
|
464
|
+
.v-list-item--density-default.v-list-item--two-line {
|
|
465
|
+
min-height: 64px;
|
|
466
|
+
padding-top: 12px;
|
|
467
|
+
padding-bottom: 12px;
|
|
468
|
+
}
|
|
469
|
+
.v-list-item--density-default.v-list-item--three-line {
|
|
470
|
+
min-height: 88px;
|
|
471
|
+
padding-top: 16px;
|
|
472
|
+
padding-bottom: 16px;
|
|
473
|
+
}
|
|
474
|
+
.v-list-item--density-default:not(.v-list-item--nav).v-list-item--one-line {
|
|
475
|
+
padding-inline-start: 16px;
|
|
476
|
+
padding-inline-end: 16px;
|
|
477
|
+
}
|
|
478
|
+
.v-list-item--density-default:not(.v-list-item--nav).v-list-item--two-line {
|
|
479
|
+
padding-inline-start: 16px;
|
|
480
|
+
padding-inline-end: 16px;
|
|
481
|
+
}
|
|
482
|
+
.v-list-item--density-default:not(.v-list-item--nav).v-list-item--three-line {
|
|
483
|
+
padding-inline-start: 16px;
|
|
484
|
+
padding-inline-end: 16px;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.v-list-item--density-comfortable {
|
|
488
|
+
min-height: 36px;
|
|
489
|
+
}
|
|
490
|
+
.v-list-item--density-comfortable.v-list-item--one-line {
|
|
491
|
+
min-height: 44px;
|
|
492
|
+
}
|
|
493
|
+
.v-list-item--density-comfortable.v-list-item--two-line {
|
|
494
|
+
min-height: 60px;
|
|
495
|
+
padding-top: 8px;
|
|
496
|
+
padding-bottom: 8px;
|
|
497
|
+
}
|
|
498
|
+
.v-list-item--density-comfortable.v-list-item--three-line {
|
|
499
|
+
min-height: 84px;
|
|
500
|
+
padding-top: 12px;
|
|
501
|
+
padding-bottom: 12px;
|
|
502
|
+
}
|
|
503
|
+
.v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--one-line {
|
|
504
|
+
padding-inline-start: 16px;
|
|
505
|
+
padding-inline-end: 16px;
|
|
506
|
+
}
|
|
507
|
+
.v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--two-line {
|
|
508
|
+
padding-inline-start: 16px;
|
|
509
|
+
padding-inline-end: 16px;
|
|
510
|
+
}
|
|
511
|
+
.v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--three-line {
|
|
512
|
+
padding-inline-start: 16px;
|
|
513
|
+
padding-inline-end: 16px;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.v-list-item--density-compact {
|
|
517
|
+
min-height: 32px;
|
|
518
|
+
}
|
|
519
|
+
.v-list-item--density-compact.v-list-item--one-line {
|
|
520
|
+
min-height: 40px;
|
|
521
|
+
}
|
|
522
|
+
.v-list-item--density-compact.v-list-item--two-line {
|
|
523
|
+
min-height: 56px;
|
|
524
|
+
padding-top: 4px;
|
|
525
|
+
padding-bottom: 4px;
|
|
526
|
+
}
|
|
527
|
+
.v-list-item--density-compact.v-list-item--three-line {
|
|
528
|
+
min-height: 80px;
|
|
529
|
+
padding-top: 8px;
|
|
530
|
+
padding-bottom: 8px;
|
|
531
|
+
}
|
|
532
|
+
.v-list-item--density-compact:not(.v-list-item--nav).v-list-item--one-line {
|
|
533
|
+
padding-inline-start: 16px;
|
|
534
|
+
padding-inline-end: 16px;
|
|
535
|
+
}
|
|
536
|
+
.v-list-item--density-compact:not(.v-list-item--nav).v-list-item--two-line {
|
|
537
|
+
padding-inline-start: 16px;
|
|
538
|
+
padding-inline-end: 16px;
|
|
539
|
+
}
|
|
540
|
+
.v-list-item--density-compact:not(.v-list-item--nav).v-list-item--three-line {
|
|
541
|
+
padding-inline-start: 16px;
|
|
542
|
+
padding-inline-end: 16px;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
.v-list-item--nav {
|
|
546
|
+
padding-inline-start: 8px;
|
|
547
|
+
padding-inline-end: 8px;
|
|
548
|
+
}
|
|
549
|
+
.v-list .v-list-item--nav:not(:only-child) {
|
|
550
|
+
margin-bottom: 4px;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
.v-list-item__underlay {
|
|
554
|
+
position: absolute;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
.v-list-item__overlay {
|
|
558
|
+
background-color: currentColor;
|
|
559
|
+
border-radius: inherit;
|
|
560
|
+
bottom: 0;
|
|
561
|
+
left: 0;
|
|
562
|
+
opacity: 0;
|
|
563
|
+
pointer-events: none;
|
|
564
|
+
position: absolute;
|
|
565
|
+
right: 0;
|
|
566
|
+
top: 0;
|
|
567
|
+
transition: opacity 0.2s ease-in-out;
|
|
568
|
+
}
|
|
569
|
+
.v-list-item--active.v-list-item--variant-elevated .v-list-item__overlay {
|
|
570
|
+
--v-theme-overlay-multiplier: 0;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.v-list {
|
|
574
|
+
--indent-padding: 0px;
|
|
575
|
+
}
|
|
576
|
+
.v-list--nav {
|
|
577
|
+
--indent-padding: -8px;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.v-list-group {
|
|
581
|
+
--list-indent-size: 16px;
|
|
582
|
+
--parent-padding: var(--indent-padding);
|
|
583
|
+
--prepend-width: 40px;
|
|
584
|
+
}
|
|
585
|
+
.v-list-group--fluid {
|
|
586
|
+
--list-indent-size: 0px;
|
|
587
|
+
}
|
|
588
|
+
.v-list-group--prepend {
|
|
589
|
+
--parent-padding: calc(var(--indent-padding) + var(--prepend-width));
|
|
590
|
+
}
|
|
591
|
+
.v-list-group--fluid.v-list-group--prepend {
|
|
592
|
+
--parent-padding: var(--indent-padding);
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
.v-list-group__items {
|
|
596
|
+
--indent-padding: calc(var(--parent-padding) + var(--list-indent-size));
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.v-list-group__items .v-list-item {
|
|
600
|
+
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.v-list-group__header.v-list-item--active:not(:focus-visible) .v-list-item__overlay {
|
|
604
|
+
opacity: 0;
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
.v-menu .v-overlay__content {
|
|
608
|
+
display: flex;
|
|
609
|
+
flex-direction: column;
|
|
610
|
+
border-radius: 4px;
|
|
611
|
+
}
|
|
612
|
+
.v-menu .v-overlay__content > .v-card,
|
|
613
|
+
.v-menu .v-overlay__content > .v-sheet,
|
|
614
|
+
.v-menu .v-overlay__content > .v-list {
|
|
615
|
+
background: rgb(var(--v-theme-surface));
|
|
616
|
+
border-radius: inherit;
|
|
617
|
+
overflow: auto;
|
|
618
|
+
height: 100%;
|
|
619
|
+
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-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
620
|
+
}
|
|
45
621
|
|
|
46
622
|
.v-navigation-drawer {
|
|
47
623
|
-webkit-overflow-scrolling: touch;
|
|
@@ -287,7 +863,8 @@ html .theme--light.v-list-item--disabled{color:rgba(0,0,0,.38)}html .theme--ligh
|
|
|
287
863
|
height: 24px;
|
|
288
864
|
justify-content: flex-end;
|
|
289
865
|
max-width: 100%;
|
|
290
|
-
padding:
|
|
866
|
+
padding-inline-start: 8px;
|
|
867
|
+
padding-inline-end: 8px;
|
|
291
868
|
position: relative;
|
|
292
869
|
text-align: end;
|
|
293
870
|
width: 100%;
|
|
@@ -315,6 +892,9 @@ html .theme--light.v-list-item--disabled{color:rgba(0,0,0,.38)}html .theme--ligh
|
|
|
315
892
|
.v-system-bar--window {
|
|
316
893
|
height: 32px;
|
|
317
894
|
}
|
|
895
|
+
.v-system-bar:not(.v-system-bar--absolute) {
|
|
896
|
+
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
|
897
|
+
}
|
|
318
898
|
|
|
319
899
|
.v-card {
|
|
320
900
|
display: block;
|
|
@@ -606,8 +1186,6 @@ html .theme--light.v-list-item--disabled{color:rgba(0,0,0,.38)}html .theme--ligh
|
|
|
606
1186
|
transition: opacity 0.2s ease-in-out;
|
|
607
1187
|
}
|
|
608
1188
|
|
|
609
|
-
html .theme--light.v-stepper{background:#fff}html .theme--light.v-stepper .v-stepper__step:not(.v-stepper__step--active):not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__step__step{background:rgba(0,0,0,.38)}html .theme--light.v-stepper .v-stepper__step__step{color:#fff}html .theme--light.v-stepper .v-stepper__step__step .v-icon{color:#fff}html .theme--light.v-stepper .v-stepper__header .v-divider{border-color:rgba(0,0,0,.12)}html .theme--light.v-stepper .v-stepper__step--active .v-stepper__label{text-shadow:0px 0px 0px #000}html .theme--light.v-stepper .v-stepper__step--editable:hover{background:rgba(0,0,0,.06)}html .theme--light.v-stepper .v-stepper__step--editable:hover .v-stepper__label{text-shadow:0px 0px 0px #000}html .theme--light.v-stepper .v-stepper__step--complete .v-stepper__label{color:rgba(0,0,0,.87)}html .theme--light.v-stepper .v-stepper__step--inactive.v-stepper__step--editable:not(.v-stepper__step--error):hover .v-stepper__step__step{background:rgba(0,0,0,.54)}html .theme--light.v-stepper .v-stepper__label{color:rgba(0,0,0,.38)}html .theme--light.v-stepper .v-stepper__label small{color:rgba(0,0,0,.6)}html .theme--light.v-stepper--non-linear .v-stepper__step:not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__label{color:rgba(0,0,0,.6)}html .v-application--is-ltr .theme--light.v-stepper--vertical .v-stepper__content:not(:last-child){border-left:1px solid rgba(0,0,0,.12)}html .v-application--is-rtl .theme--light.v-stepper--vertical .v-stepper__content:not(:last-child){border-right:1px solid rgba(0,0,0,.12)}html .theme--dark.v-stepper{background:#303030}html .theme--dark.v-stepper .v-stepper__step:not(.v-stepper__step--active):not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__step__step{background:rgba(255,255,255,.5)}html .theme--dark.v-stepper .v-stepper__step__step{color:#fff}html .theme--dark.v-stepper .v-stepper__step__step .v-icon{color:#fff}html .theme--dark.v-stepper .v-stepper__header .v-divider{border-color:rgba(255,255,255,.12)}html .theme--dark.v-stepper .v-stepper__step--active .v-stepper__label{text-shadow:0px 0px 0px #fff}html .theme--dark.v-stepper .v-stepper__step--editable:hover{background:rgba(255,255,255,.06)}html .theme--dark.v-stepper .v-stepper__step--editable:hover .v-stepper__label{text-shadow:0px 0px 0px #fff}html .theme--dark.v-stepper .v-stepper__step--complete .v-stepper__label{color:rgba(255,255,255,.87)}html .theme--dark.v-stepper .v-stepper__step--inactive.v-stepper__step--editable:not(.v-stepper__step--error):hover .v-stepper__step__step{background:rgba(255,255,255,.75)}html .theme--dark.v-stepper .v-stepper__label{color:rgba(255,255,255,.5)}html .theme--dark.v-stepper .v-stepper__label small{color:rgba(255,255,255,.7)}html .theme--dark.v-stepper--non-linear .v-stepper__step:not(.v-stepper__step--complete):not(.v-stepper__step--error) .v-stepper__label{color:rgba(255,255,255,.7)}html .v-application--is-ltr .theme--dark.v-stepper--vertical .v-stepper__content:not(:last-child){border-left:1px solid rgba(255,255,255,.12)}html .v-application--is-rtl .theme--dark.v-stepper--vertical .v-stepper__content:not(:last-child){border-right:1px solid rgba(255,255,255,.12)}[data-omfx] .v-sheet.v-stepper, .v-menu__content .v-sheet.v-stepper, .v-tooltip__content .v-sheet.v-stepper, .v-dialog__content .v-sheet.v-stepper{border-radius:4px}[data-omfx] .v-sheet.v-stepper:not(.v-sheet--outlined), .v-menu__content .v-sheet.v-stepper:not(.v-sheet--outlined), .v-tooltip__content .v-sheet.v-stepper:not(.v-sheet--outlined), .v-dialog__content .v-sheet.v-stepper:not(.v-sheet--outlined){box-shadow:0px 3px 1px -2px rgba(0,0,0,.2),0px 2px 2px 0px rgba(0,0,0,.14),0px 1px 5px 0px rgba(0,0,0,.12)}[data-omfx] .v-sheet.v-stepper.v-sheet--shaped, .v-menu__content .v-sheet.v-stepper.v-sheet--shaped, .v-tooltip__content .v-sheet.v-stepper.v-sheet--shaped, .v-dialog__content .v-sheet.v-stepper.v-sheet--shaped{border-radius:24px 4px}[data-omfx] .v-stepper, .v-menu__content .v-stepper, .v-tooltip__content .v-stepper, .v-dialog__content .v-stepper{border-radius:4px;overflow:hidden;position:relative}[data-omfx] .v-stepper__header, .v-menu__content .v-stepper__header, .v-tooltip__content .v-stepper__header, .v-dialog__content .v-stepper__header{height:72px;align-items:stretch;display:flex;flex-wrap:wrap;justify-content:space-between;box-shadow:0px 3px 1px -2px rgba(0,0,0,.2),0px 2px 2px 0px rgba(0,0,0,.14),0px 1px 5px 0px rgba(0,0,0,.12)}[data-omfx] .v-stepper__header .v-divider, .v-menu__content .v-stepper__header .v-divider, .v-tooltip__content .v-stepper__header .v-divider, .v-dialog__content .v-stepper__header .v-divider{align-self:center;margin:0 -16px}[data-omfx] .v-stepper__items, .v-menu__content .v-stepper__items, .v-tooltip__content .v-stepper__items, .v-dialog__content .v-stepper__items{position:relative;overflow:hidden}[data-omfx] .v-stepper__step__step, .v-menu__content .v-stepper__step__step, .v-tooltip__content .v-stepper__step__step, .v-dialog__content .v-stepper__step__step{align-items:center;border-radius:50%;display:inline-flex;font-size:.75rem;justify-content:center;height:24px;min-width:24px;width:24px;transition:.3s cubic-bezier(0.25, 0.8, 0.25, 1)}html .v-application--is-ltr .v-stepper__step__step{margin-right:8px}html .v-application--is-rtl .v-stepper__step__step{margin-left:8px}[data-omfx] .v-stepper__step__step .v-icon.v-icon, .v-menu__content .v-stepper__step__step .v-icon.v-icon, .v-tooltip__content .v-stepper__step__step .v-icon.v-icon, .v-dialog__content .v-stepper__step__step .v-icon.v-icon{font-size:1.25rem}[data-omfx] .v-stepper__step__step .v-icon.v-icon.v-icon--svg, .v-menu__content .v-stepper__step__step .v-icon.v-icon.v-icon--svg, .v-tooltip__content .v-stepper__step__step .v-icon.v-icon.v-icon--svg, .v-dialog__content .v-stepper__step__step .v-icon.v-icon.v-icon--svg{height:1.25rem;width:1.25rem}[data-omfx] .v-stepper__step, .v-menu__content .v-stepper__step, .v-tooltip__content .v-stepper__step, .v-dialog__content .v-stepper__step{align-items:center;display:flex;flex-direction:row;padding:24px;position:relative}[data-omfx] .v-stepper__step--active .v-stepper__label, .v-menu__content .v-stepper__step--active .v-stepper__label, .v-tooltip__content .v-stepper__step--active .v-stepper__label, .v-dialog__content .v-stepper__step--active .v-stepper__label{transition:.3s cubic-bezier(0.4, 0, 0.6, 1)}[data-omfx] .v-stepper__step--editable, .v-menu__content .v-stepper__step--editable, .v-tooltip__content .v-stepper__step--editable, .v-dialog__content .v-stepper__step--editable{cursor:pointer}[data-omfx] .v-stepper__step.v-stepper__step--error .v-stepper__step__step, .v-menu__content .v-stepper__step.v-stepper__step--error .v-stepper__step__step, .v-tooltip__content .v-stepper__step.v-stepper__step--error .v-stepper__step__step, .v-dialog__content .v-stepper__step.v-stepper__step--error .v-stepper__step__step{background:transparent;color:inherit}[data-omfx] .v-stepper__step.v-stepper__step--error .v-stepper__step__step .v-icon, .v-menu__content .v-stepper__step.v-stepper__step--error .v-stepper__step__step .v-icon, .v-tooltip__content .v-stepper__step.v-stepper__step--error .v-stepper__step__step .v-icon, .v-dialog__content .v-stepper__step.v-stepper__step--error .v-stepper__step__step .v-icon{font-size:1.5rem;color:inherit}[data-omfx] .v-stepper .v-stepper__step.v-stepper__step--error .v-stepper__label, .v-menu__content .v-stepper .v-stepper__step.v-stepper__step--error .v-stepper__label, .v-tooltip__content .v-stepper .v-stepper__step.v-stepper__step--error .v-stepper__label, .v-dialog__content .v-stepper .v-stepper__step.v-stepper__step--error .v-stepper__label{color:inherit;text-shadow:none;font-weight:500}[data-omfx] .v-stepper .v-stepper__step.v-stepper__step--error .v-stepper__label small, .v-menu__content .v-stepper .v-stepper__step.v-stepper__step--error .v-stepper__label small, .v-tooltip__content .v-stepper .v-stepper__step.v-stepper__step--error .v-stepper__label small, .v-dialog__content .v-stepper .v-stepper__step.v-stepper__step--error .v-stepper__label small{color:inherit}[data-omfx] .v-stepper__label, .v-menu__content .v-stepper__label, .v-tooltip__content .v-stepper__label, .v-dialog__content .v-stepper__label{display:block;flex-grow:1;line-height:1}html .v-application--is-ltr .v-stepper__label{text-align:left}html .v-application--is-rtl .v-stepper__label{text-align:right}[data-omfx] .v-stepper__label small, .v-menu__content .v-stepper__label small, .v-tooltip__content .v-stepper__label small, .v-dialog__content .v-stepper__label small{display:block;font-size:.75rem;font-weight:300;text-shadow:none}[data-omfx] .v-stepper__wrapper, .v-menu__content .v-stepper__wrapper, .v-tooltip__content .v-stepper__wrapper, .v-dialog__content .v-stepper__wrapper{overflow:hidden;transition:none}[data-omfx] .v-stepper__content, .v-menu__content .v-stepper__content, .v-tooltip__content .v-stepper__content, .v-dialog__content .v-stepper__content{top:0;padding:24px 24px 16px 24px;flex:1 0 auto;width:100%}[data-omfx] .v-stepper__content>.v-btn, .v-menu__content .v-stepper__content>.v-btn, .v-tooltip__content .v-stepper__content>.v-btn, .v-dialog__content .v-stepper__content>.v-btn{margin:24px 8px 8px 0}[data-omfx] .v-stepper--flat, .v-menu__content .v-stepper--flat, .v-tooltip__content .v-stepper--flat, .v-dialog__content .v-stepper--flat{box-shadow:0px 0px 0px 0px rgba(0,0,0,.2),0px 0px 0px 0px rgba(0,0,0,.14),0px 0px 0px 0px rgba(0,0,0,.12) !important}[data-omfx] .v-stepper--is-booted .v-stepper__content, .v-menu__content .v-stepper--is-booted .v-stepper__content, .v-tooltip__content .v-stepper--is-booted .v-stepper__content, .v-dialog__content .v-stepper--is-booted .v-stepper__content,[data-omfx] .v-stepper--is-booted .v-stepper__wrapper, .v-menu__content .v-stepper--is-booted .v-stepper__wrapper, .v-tooltip__content .v-stepper--is-booted .v-stepper__wrapper, .v-dialog__content .v-stepper--is-booted .v-stepper__wrapper{transition:.3s cubic-bezier(0.25, 0.8, 0.5, 1)}[data-omfx] .v-stepper--vertical, .v-menu__content .v-stepper--vertical, .v-tooltip__content .v-stepper--vertical, .v-dialog__content .v-stepper--vertical{padding-bottom:36px}[data-omfx] .v-stepper--vertical .v-stepper__content, .v-menu__content .v-stepper--vertical .v-stepper__content, .v-tooltip__content .v-stepper--vertical .v-stepper__content, .v-dialog__content .v-stepper--vertical .v-stepper__content{width:auto}html .v-application--is-ltr .v-stepper--vertical .v-stepper__content{padding:16px 60px 16px 23px}html .v-application--is-rtl .v-stepper--vertical .v-stepper__content{padding:16px 23px 16px 60px}html .v-application--is-ltr .v-stepper--vertical .v-stepper__content{margin:-8px -36px -16px 36px}html .v-application--is-rtl .v-stepper--vertical .v-stepper__content{margin:-8px 36px -16px -36px}[data-omfx] .v-stepper--vertical .v-stepper__step, .v-menu__content .v-stepper--vertical .v-stepper__step, .v-tooltip__content .v-stepper--vertical .v-stepper__step, .v-dialog__content .v-stepper--vertical .v-stepper__step{padding:24px 24px 16px}html .v-application--is-ltr .v-stepper--vertical .v-stepper__step__step{margin-right:12px}html .v-application--is-rtl .v-stepper--vertical .v-stepper__step__step{margin-left:12px}[data-omfx] .v-stepper--alt-labels .v-stepper__header, .v-menu__content .v-stepper--alt-labels .v-stepper__header, .v-tooltip__content .v-stepper--alt-labels .v-stepper__header, .v-dialog__content .v-stepper--alt-labels .v-stepper__header{height:auto}[data-omfx] .v-stepper--alt-labels .v-stepper__header .v-divider, .v-menu__content .v-stepper--alt-labels .v-stepper__header .v-divider, .v-tooltip__content .v-stepper--alt-labels .v-stepper__header .v-divider, .v-dialog__content .v-stepper--alt-labels .v-stepper__header .v-divider{margin:35px -67px 0;align-self:flex-start}[data-omfx] .v-stepper--alt-labels .v-stepper__step, .v-menu__content .v-stepper--alt-labels .v-stepper__step, .v-tooltip__content .v-stepper--alt-labels .v-stepper__step, .v-dialog__content .v-stepper--alt-labels .v-stepper__step{flex-direction:column;justify-content:flex-start;align-items:center;flex-basis:175px}[data-omfx] .v-stepper--alt-labels .v-stepper__step small, .v-menu__content .v-stepper--alt-labels .v-stepper__step small, .v-tooltip__content .v-stepper--alt-labels .v-stepper__step small, .v-dialog__content .v-stepper--alt-labels .v-stepper__step small{text-align:center}[data-omfx] .v-stepper--alt-labels .v-stepper__step__step, .v-menu__content .v-stepper--alt-labels .v-stepper__step__step, .v-tooltip__content .v-stepper--alt-labels .v-stepper__step__step, .v-dialog__content .v-stepper--alt-labels .v-stepper__step__step{margin-bottom:11px;margin-left:0;margin-right:0}@media only screen and (max-width: 959.98px){[data-omfx] .v-stepper:not(.v-stepper--vertical) .v-stepper__label, .v-menu__content .v-stepper:not(.v-stepper--vertical) .v-stepper__label, .v-tooltip__content .v-stepper:not(.v-stepper--vertical) .v-stepper__label, .v-dialog__content .v-stepper:not(.v-stepper--vertical) .v-stepper__label{display:none}[data-omfx] .v-stepper:not(.v-stepper--vertical) .v-stepper__step__step, .v-menu__content .v-stepper:not(.v-stepper--vertical) .v-stepper__step__step, .v-tooltip__content .v-stepper:not(.v-stepper--vertical) .v-stepper__step__step, .v-dialog__content .v-stepper:not(.v-stepper--vertical) .v-stepper__step__step{margin-left:0;margin-right:0}}
|
|
610
|
-
|
|
611
1189
|
.v-tabs {
|
|
612
1190
|
display: flex;
|
|
613
1191
|
height: var(--v-tabs-height);
|
|
@@ -1038,80 +1616,3 @@ html .theme--light.v-stepper{background:#fff}html .theme--light.v-stepper .v-ste
|
|
|
1038
1616
|
margin: 0 4px;
|
|
1039
1617
|
}
|
|
1040
1618
|
|
|
1041
|
-
.v-dialog {
|
|
1042
|
-
align-items: center;
|
|
1043
|
-
justify-content: center;
|
|
1044
|
-
margin: auto;
|
|
1045
|
-
}
|
|
1046
|
-
.v-dialog .v-overlay__content {
|
|
1047
|
-
max-height: calc(100% - 48px);
|
|
1048
|
-
width: calc(100% - 48px);
|
|
1049
|
-
max-width: calc(100% - 48px);
|
|
1050
|
-
margin: 24px;
|
|
1051
|
-
display: flex;
|
|
1052
|
-
flex-direction: column;
|
|
1053
|
-
}
|
|
1054
|
-
.v-dialog .v-overlay__content > .v-card,
|
|
1055
|
-
.v-dialog .v-overlay__content > .v-sheet {
|
|
1056
|
-
--v-scrollbar-offset: 0px;
|
|
1057
|
-
border-radius: 4px;
|
|
1058
|
-
overflow-y: auto;
|
|
1059
|
-
box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
1060
|
-
}
|
|
1061
|
-
.v-dialog .v-overlay__content > .v-card {
|
|
1062
|
-
display: flex;
|
|
1063
|
-
flex-direction: column;
|
|
1064
|
-
}
|
|
1065
|
-
.v-dialog .v-overlay__content > .v-card > .v-card-item {
|
|
1066
|
-
padding: 14px 24px 0;
|
|
1067
|
-
}
|
|
1068
|
-
.v-dialog .v-overlay__content > .v-card > .v-card-item + .v-card-text {
|
|
1069
|
-
padding-top: 10px;
|
|
1070
|
-
}
|
|
1071
|
-
.v-dialog .v-overlay__content > .v-card > .v-card-text {
|
|
1072
|
-
font-size: inherit;
|
|
1073
|
-
letter-spacing: 0.03125em;
|
|
1074
|
-
line-height: inherit;
|
|
1075
|
-
padding: 16px 24px 10px;
|
|
1076
|
-
}
|
|
1077
|
-
|
|
1078
|
-
.v-dialog--fullscreen {
|
|
1079
|
-
--v-scrollbar-offset: 0px;
|
|
1080
|
-
}
|
|
1081
|
-
.v-dialog--fullscreen .v-overlay__content {
|
|
1082
|
-
border-radius: 0;
|
|
1083
|
-
margin: 0;
|
|
1084
|
-
padding: 0;
|
|
1085
|
-
width: 100%;
|
|
1086
|
-
height: 100%;
|
|
1087
|
-
max-width: 100%;
|
|
1088
|
-
max-height: 100%;
|
|
1089
|
-
overflow-y: auto;
|
|
1090
|
-
top: 0;
|
|
1091
|
-
left: 0;
|
|
1092
|
-
}
|
|
1093
|
-
.v-dialog--fullscreen .v-overlay__content > .v-card,
|
|
1094
|
-
.v-dialog--fullscreen .v-overlay__content > .v-sheet {
|
|
1095
|
-
min-height: 100%;
|
|
1096
|
-
min-width: 100%;
|
|
1097
|
-
border-radius: 0;
|
|
1098
|
-
}
|
|
1099
|
-
|
|
1100
|
-
.v-dialog--scrollable .v-overlay__content,
|
|
1101
|
-
.v-dialog--scrollable .v-overlay__content > form {
|
|
1102
|
-
display: flex;
|
|
1103
|
-
}
|
|
1104
|
-
.v-dialog--scrollable .v-overlay__content > .v-card,
|
|
1105
|
-
.v-dialog--scrollable .v-overlay__content > form > .v-card {
|
|
1106
|
-
display: flex;
|
|
1107
|
-
flex: 1 1 100%;
|
|
1108
|
-
flex-direction: column;
|
|
1109
|
-
max-height: 100%;
|
|
1110
|
-
max-width: 100%;
|
|
1111
|
-
}
|
|
1112
|
-
.v-dialog--scrollable .v-overlay__content > .v-card > .v-card-text,
|
|
1113
|
-
.v-dialog--scrollable .v-overlay__content > form > .v-card > .v-card-text {
|
|
1114
|
-
backface-visibility: hidden;
|
|
1115
|
-
overflow-y: auto;
|
|
1116
|
-
}
|
|
1117
|
-
|