@omnia/runtime 8.0.308-dev → 8.0.310-dev
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.avatar_5b901a77-3b57-4356-ba7c-c04685a8bca3.css +108 -0
- package/dist/bundles/omnia.fx.ux.vuetify.badge_7aeb90ec-7425-4208-8322-b74fa5a89a56.css +75 -0
- package/dist/bundles/omnia.fx.ux.vuetify.card_8a1e819f-6ac7-440b-8643-9ec87ec89c1f.css +308 -0
- package/dist/bundles/omnia.fx.ux.vuetify.carousel_2b3ac228-7b0c-4449-b8b6-bf52f7ffadb4.css +67 -0
- package/dist/bundles/omnia.fx.ux.vuetify.expansionpanels_57a42e38-a699-4a08-8f8b-6893f16cede3.css +217 -0
- package/dist/bundles/omnia.fx.ux.vuetify.list_2c3c6fe0-5e52-4377-9cff-f24cdebdc7b2.css +575 -0
- package/dist/bundles/omnia.fx.ux.vuetify.navigation_160ad01f-3967-488c-bcff-9919c9f15c5b.css +110 -0
- package/dist/bundles/omnia.fx.ux.vuetify.tabs_d4cde46a-4e16-428c-9490-c9208532912e.css +98 -0
- package/dist/bundles/omnia.fx.ux.vuetify.toolbar_1189480d-bb23-4f42-953f-5d2bb81ea050.css +202 -0
- package/dist/bundles/omnia.fx.ux.vuetify.virtualscroll_660ae133-398f-43e7-a1c7-d967406abed2.css +11 -0
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_admin_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_docs_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_editor_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_public_manifests.json +1 -1
- package/package.json +5 -5
- package/dist/bundles/omnia.fx.ux.vuetify.common_798d6494-70cc-47eb-9054-30b047beab19.css +0 -1771
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
.v-avatar {
|
|
2
|
+
flex: none;
|
|
3
|
+
align-items: center;
|
|
4
|
+
display: inline-flex;
|
|
5
|
+
justify-content: center;
|
|
6
|
+
line-height: normal;
|
|
7
|
+
overflow: hidden;
|
|
8
|
+
position: relative;
|
|
9
|
+
text-align: center;
|
|
10
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
11
|
+
transition-property: width, height;
|
|
12
|
+
vertical-align: middle;
|
|
13
|
+
}
|
|
14
|
+
.v-avatar.v-avatar--size-x-small {
|
|
15
|
+
--v-avatar-height: 24px;
|
|
16
|
+
}
|
|
17
|
+
.v-avatar.v-avatar--size-small {
|
|
18
|
+
--v-avatar-height: 32px;
|
|
19
|
+
}
|
|
20
|
+
.v-avatar.v-avatar--size-default {
|
|
21
|
+
--v-avatar-height: 40px;
|
|
22
|
+
}
|
|
23
|
+
.v-avatar.v-avatar--size-large {
|
|
24
|
+
--v-avatar-height: 48px;
|
|
25
|
+
}
|
|
26
|
+
.v-avatar.v-avatar--size-x-large {
|
|
27
|
+
--v-avatar-height: 56px;
|
|
28
|
+
}
|
|
29
|
+
.v-avatar.v-avatar--density-default {
|
|
30
|
+
height: calc(var(--v-avatar-height) + 0px);
|
|
31
|
+
width: calc(var(--v-avatar-height) + 0px);
|
|
32
|
+
}
|
|
33
|
+
.v-avatar.v-avatar--density-comfortable {
|
|
34
|
+
height: calc(var(--v-avatar-height) + -4px);
|
|
35
|
+
width: calc(var(--v-avatar-height) + -4px);
|
|
36
|
+
}
|
|
37
|
+
.v-avatar.v-avatar--density-compact {
|
|
38
|
+
height: calc(var(--v-avatar-height) + -8px);
|
|
39
|
+
width: calc(var(--v-avatar-height) + -8px);
|
|
40
|
+
}
|
|
41
|
+
.v-avatar {
|
|
42
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
43
|
+
border-style: solid;
|
|
44
|
+
border-width: 0;
|
|
45
|
+
}
|
|
46
|
+
.v-avatar--border {
|
|
47
|
+
border-width: thin;
|
|
48
|
+
box-shadow: none;
|
|
49
|
+
}
|
|
50
|
+
.v-avatar {
|
|
51
|
+
border-radius: 50%;
|
|
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-ambient-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-ambient-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
|
+
top: 0;
|
|
87
|
+
right: 0;
|
|
88
|
+
bottom: 0;
|
|
89
|
+
left: 0;
|
|
90
|
+
pointer-events: none;
|
|
91
|
+
}
|
|
92
|
+
.v-avatar .v-avatar__underlay {
|
|
93
|
+
position: absolute;
|
|
94
|
+
}
|
|
95
|
+
.v-avatar--rounded {
|
|
96
|
+
border-radius: 4px;
|
|
97
|
+
}
|
|
98
|
+
.v-avatar--start {
|
|
99
|
+
margin-inline-end: 8px;
|
|
100
|
+
}
|
|
101
|
+
.v-avatar--end {
|
|
102
|
+
margin-inline-start: 8px;
|
|
103
|
+
}
|
|
104
|
+
.v-avatar .v-img {
|
|
105
|
+
height: 100%;
|
|
106
|
+
width: 100%;
|
|
107
|
+
}
|
|
108
|
+
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
.v-badge {
|
|
2
|
+
display: inline-block;
|
|
3
|
+
line-height: 1;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.v-badge__badge {
|
|
7
|
+
align-items: center;
|
|
8
|
+
display: inline-flex;
|
|
9
|
+
border-radius: 10px;
|
|
10
|
+
font-size: 0.75rem;
|
|
11
|
+
font-weight: 500;
|
|
12
|
+
height: 1.25rem;
|
|
13
|
+
justify-content: center;
|
|
14
|
+
min-width: 20px;
|
|
15
|
+
padding: 4px 6px;
|
|
16
|
+
pointer-events: auto;
|
|
17
|
+
position: absolute;
|
|
18
|
+
text-align: center;
|
|
19
|
+
text-indent: 0;
|
|
20
|
+
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
|
21
|
+
white-space: nowrap;
|
|
22
|
+
}
|
|
23
|
+
.v-badge__badge {
|
|
24
|
+
background: rgb(var(--v-theme-surface-variant));
|
|
25
|
+
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
|
26
|
+
}
|
|
27
|
+
.v-badge--bordered .v-badge__badge::after {
|
|
28
|
+
border-radius: inherit;
|
|
29
|
+
border-style: solid;
|
|
30
|
+
border-width: 2px;
|
|
31
|
+
bottom: 0;
|
|
32
|
+
color: rgb(var(--v-theme-background));
|
|
33
|
+
content: "";
|
|
34
|
+
left: 0;
|
|
35
|
+
position: absolute;
|
|
36
|
+
right: 0;
|
|
37
|
+
top: 0;
|
|
38
|
+
transform: scale(1.05);
|
|
39
|
+
}
|
|
40
|
+
.v-badge--dot .v-badge__badge {
|
|
41
|
+
border-radius: 4.5px;
|
|
42
|
+
height: 9px;
|
|
43
|
+
min-width: 0;
|
|
44
|
+
padding: 0;
|
|
45
|
+
width: 9px;
|
|
46
|
+
}
|
|
47
|
+
.v-badge--dot .v-badge__badge::after {
|
|
48
|
+
border-width: 1.5px;
|
|
49
|
+
}
|
|
50
|
+
.v-badge--inline .v-badge__badge {
|
|
51
|
+
position: relative;
|
|
52
|
+
vertical-align: middle;
|
|
53
|
+
}
|
|
54
|
+
.v-badge__badge .v-icon {
|
|
55
|
+
color: inherit;
|
|
56
|
+
font-size: 0.75rem;
|
|
57
|
+
margin: 0 -2px;
|
|
58
|
+
}
|
|
59
|
+
.v-badge__badge img,
|
|
60
|
+
.v-badge__badge .v-img {
|
|
61
|
+
height: 100%;
|
|
62
|
+
width: 100%;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.v-badge__wrapper {
|
|
66
|
+
display: flex;
|
|
67
|
+
position: relative;
|
|
68
|
+
}
|
|
69
|
+
.v-badge--inline .v-badge__wrapper {
|
|
70
|
+
align-items: center;
|
|
71
|
+
display: inline-flex;
|
|
72
|
+
justify-content: center;
|
|
73
|
+
margin: 0 4px;
|
|
74
|
+
}
|
|
75
|
+
|
|
@@ -0,0 +1,308 @@
|
|
|
1
|
+
.v-card {
|
|
2
|
+
display: block;
|
|
3
|
+
overflow: hidden;
|
|
4
|
+
overflow-wrap: break-word;
|
|
5
|
+
position: relative;
|
|
6
|
+
padding: 0;
|
|
7
|
+
text-decoration: none;
|
|
8
|
+
transition-duration: 0.28s;
|
|
9
|
+
transition-property: box-shadow, opacity, background;
|
|
10
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
11
|
+
z-index: 0;
|
|
12
|
+
}
|
|
13
|
+
.v-card {
|
|
14
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
15
|
+
border-style: solid;
|
|
16
|
+
border-width: 0;
|
|
17
|
+
}
|
|
18
|
+
.v-card--border {
|
|
19
|
+
border-width: thin;
|
|
20
|
+
box-shadow: none;
|
|
21
|
+
}
|
|
22
|
+
.v-card--absolute {
|
|
23
|
+
position: absolute;
|
|
24
|
+
}
|
|
25
|
+
.v-card--fixed {
|
|
26
|
+
position: fixed;
|
|
27
|
+
}
|
|
28
|
+
.v-card {
|
|
29
|
+
border-radius: 4px;
|
|
30
|
+
}
|
|
31
|
+
.v-card:hover > .v-card__overlay {
|
|
32
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
33
|
+
}
|
|
34
|
+
.v-card:focus-visible > .v-card__overlay {
|
|
35
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
36
|
+
}
|
|
37
|
+
@supports not selector(:focus-visible) {
|
|
38
|
+
.v-card:focus > .v-card__overlay {
|
|
39
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
.v-card--active > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true] > .v-card__overlay {
|
|
43
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
44
|
+
}
|
|
45
|
+
.v-card--active:hover > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:hover > .v-card__overlay {
|
|
46
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
47
|
+
}
|
|
48
|
+
.v-card--active:focus-visible > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-card__overlay {
|
|
49
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
50
|
+
}
|
|
51
|
+
@supports not selector(:focus-visible) {
|
|
52
|
+
.v-card--active:focus > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus > .v-card__overlay {
|
|
53
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
.v-card--variant-plain, .v-card--variant-outlined, .v-card--variant-text, .v-card--variant-tonal {
|
|
57
|
+
background: transparent;
|
|
58
|
+
color: inherit;
|
|
59
|
+
}
|
|
60
|
+
.v-card--variant-plain {
|
|
61
|
+
opacity: 0.62;
|
|
62
|
+
}
|
|
63
|
+
.v-card--variant-plain:focus, .v-card--variant-plain:hover {
|
|
64
|
+
opacity: 1;
|
|
65
|
+
}
|
|
66
|
+
.v-card--variant-plain .v-card__overlay {
|
|
67
|
+
display: none;
|
|
68
|
+
}
|
|
69
|
+
.v-card--variant-elevated, .v-card--variant-flat {
|
|
70
|
+
background: rgb(var(--v-theme-surface));
|
|
71
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
72
|
+
}
|
|
73
|
+
.v-card--variant-elevated {
|
|
74
|
+
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));
|
|
75
|
+
}
|
|
76
|
+
.v-card--variant-flat {
|
|
77
|
+
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));
|
|
78
|
+
}
|
|
79
|
+
.v-card--variant-outlined {
|
|
80
|
+
border: thin solid currentColor;
|
|
81
|
+
}
|
|
82
|
+
.v-card--variant-text .v-card__overlay {
|
|
83
|
+
background: currentColor;
|
|
84
|
+
}
|
|
85
|
+
.v-card--variant-tonal .v-card__underlay {
|
|
86
|
+
background: currentColor;
|
|
87
|
+
opacity: var(--v-activated-opacity);
|
|
88
|
+
border-radius: inherit;
|
|
89
|
+
top: 0;
|
|
90
|
+
right: 0;
|
|
91
|
+
bottom: 0;
|
|
92
|
+
left: 0;
|
|
93
|
+
pointer-events: none;
|
|
94
|
+
}
|
|
95
|
+
.v-card .v-card__underlay {
|
|
96
|
+
position: absolute;
|
|
97
|
+
}
|
|
98
|
+
.v-card--disabled {
|
|
99
|
+
pointer-events: none;
|
|
100
|
+
user-select: none;
|
|
101
|
+
}
|
|
102
|
+
.v-card--disabled > :not(.v-card__loader) {
|
|
103
|
+
opacity: 0.6;
|
|
104
|
+
}
|
|
105
|
+
.v-card--flat {
|
|
106
|
+
box-shadow: none;
|
|
107
|
+
}
|
|
108
|
+
.v-card--hover {
|
|
109
|
+
cursor: pointer;
|
|
110
|
+
}
|
|
111
|
+
.v-card--hover::before, .v-card--hover::after {
|
|
112
|
+
border-radius: inherit;
|
|
113
|
+
bottom: 0;
|
|
114
|
+
content: "";
|
|
115
|
+
display: block;
|
|
116
|
+
left: 0;
|
|
117
|
+
pointer-events: none;
|
|
118
|
+
position: absolute;
|
|
119
|
+
right: 0;
|
|
120
|
+
top: 0;
|
|
121
|
+
transition: inherit;
|
|
122
|
+
}
|
|
123
|
+
.v-card--hover::before {
|
|
124
|
+
opacity: 1;
|
|
125
|
+
z-index: -1;
|
|
126
|
+
}
|
|
127
|
+
.v-card--hover::before {
|
|
128
|
+
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));
|
|
129
|
+
}
|
|
130
|
+
.v-card--hover::after {
|
|
131
|
+
z-index: 1;
|
|
132
|
+
opacity: 0;
|
|
133
|
+
}
|
|
134
|
+
.v-card--hover::after {
|
|
135
|
+
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));
|
|
136
|
+
}
|
|
137
|
+
.v-card--hover:hover::after {
|
|
138
|
+
opacity: 1;
|
|
139
|
+
}
|
|
140
|
+
.v-card--hover:hover::before {
|
|
141
|
+
opacity: 0;
|
|
142
|
+
}
|
|
143
|
+
.v-card--hover:hover {
|
|
144
|
+
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));
|
|
145
|
+
}
|
|
146
|
+
.v-card--link {
|
|
147
|
+
cursor: pointer;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.v-card-actions {
|
|
151
|
+
align-items: center;
|
|
152
|
+
display: flex;
|
|
153
|
+
flex: none;
|
|
154
|
+
min-height: 52px;
|
|
155
|
+
padding: 0.5rem;
|
|
156
|
+
gap: 0.5rem;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.v-card-item {
|
|
160
|
+
align-items: center;
|
|
161
|
+
display: grid;
|
|
162
|
+
flex: none;
|
|
163
|
+
grid-template-areas: "prepend content append";
|
|
164
|
+
grid-template-columns: max-content auto max-content;
|
|
165
|
+
padding: 0.625rem 1rem;
|
|
166
|
+
}
|
|
167
|
+
.v-card-item + .v-card-text {
|
|
168
|
+
padding-top: 0;
|
|
169
|
+
}
|
|
170
|
+
.v-card-item__prepend, .v-card-item__append {
|
|
171
|
+
align-items: center;
|
|
172
|
+
display: flex;
|
|
173
|
+
}
|
|
174
|
+
.v-card-item__prepend {
|
|
175
|
+
grid-area: prepend;
|
|
176
|
+
padding-inline-end: 0.5rem;
|
|
177
|
+
}
|
|
178
|
+
.v-card-item__append {
|
|
179
|
+
grid-area: append;
|
|
180
|
+
padding-inline-start: 0.5rem;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.v-card-item__content {
|
|
184
|
+
align-self: center;
|
|
185
|
+
grid-area: content;
|
|
186
|
+
overflow: hidden;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.v-card-title {
|
|
190
|
+
display: block;
|
|
191
|
+
flex: none;
|
|
192
|
+
font-size: 1.25rem;
|
|
193
|
+
font-weight: 500;
|
|
194
|
+
hyphens: auto;
|
|
195
|
+
letter-spacing: 0.0125em;
|
|
196
|
+
min-width: 0;
|
|
197
|
+
overflow-wrap: normal;
|
|
198
|
+
overflow: hidden;
|
|
199
|
+
padding: 0.5rem 1rem;
|
|
200
|
+
text-overflow: ellipsis;
|
|
201
|
+
text-transform: none;
|
|
202
|
+
white-space: nowrap;
|
|
203
|
+
word-break: normal;
|
|
204
|
+
word-wrap: break-word;
|
|
205
|
+
}
|
|
206
|
+
.v-card .v-card-title {
|
|
207
|
+
line-height: 1.6;
|
|
208
|
+
}
|
|
209
|
+
.v-card--density-comfortable .v-card-title {
|
|
210
|
+
line-height: 1.75rem;
|
|
211
|
+
}
|
|
212
|
+
.v-card--density-compact .v-card-title {
|
|
213
|
+
line-height: 1.55rem;
|
|
214
|
+
}
|
|
215
|
+
.v-card-item .v-card-title {
|
|
216
|
+
padding: 0;
|
|
217
|
+
}
|
|
218
|
+
.v-card-title + .v-card-text,
|
|
219
|
+
.v-card-title + .v-card-actions {
|
|
220
|
+
padding-top: 0;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.v-card-subtitle {
|
|
224
|
+
display: block;
|
|
225
|
+
flex: none;
|
|
226
|
+
font-size: 0.875rem;
|
|
227
|
+
font-weight: 400;
|
|
228
|
+
letter-spacing: 0.0178571429em;
|
|
229
|
+
opacity: var(--v-card-subtitle-opacity, var(--v-medium-emphasis-opacity));
|
|
230
|
+
overflow: hidden;
|
|
231
|
+
padding: 0 1rem;
|
|
232
|
+
text-overflow: ellipsis;
|
|
233
|
+
text-transform: none;
|
|
234
|
+
white-space: nowrap;
|
|
235
|
+
}
|
|
236
|
+
.v-card .v-card-subtitle {
|
|
237
|
+
line-height: 1.425;
|
|
238
|
+
}
|
|
239
|
+
.v-card--density-comfortable .v-card-subtitle {
|
|
240
|
+
line-height: 1.125rem;
|
|
241
|
+
}
|
|
242
|
+
.v-card--density-compact .v-card-subtitle {
|
|
243
|
+
line-height: 1rem;
|
|
244
|
+
}
|
|
245
|
+
.v-card-item .v-card-subtitle {
|
|
246
|
+
padding: 0 0 0.25rem;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.v-card-text {
|
|
250
|
+
flex: 1 1 auto;
|
|
251
|
+
font-size: 0.875rem;
|
|
252
|
+
font-weight: 400;
|
|
253
|
+
letter-spacing: 0.0178571429em;
|
|
254
|
+
opacity: var(--v-card-text-opacity, 1);
|
|
255
|
+
padding: 1rem;
|
|
256
|
+
text-transform: none;
|
|
257
|
+
}
|
|
258
|
+
.v-card .v-card-text {
|
|
259
|
+
line-height: 1.425;
|
|
260
|
+
}
|
|
261
|
+
.v-card--density-comfortable .v-card-text {
|
|
262
|
+
line-height: 1.2rem;
|
|
263
|
+
}
|
|
264
|
+
.v-card--density-compact .v-card-text {
|
|
265
|
+
line-height: 1.15rem;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.v-card__image {
|
|
269
|
+
display: flex;
|
|
270
|
+
height: 100%;
|
|
271
|
+
flex: 1 1 auto;
|
|
272
|
+
left: 0;
|
|
273
|
+
overflow: hidden;
|
|
274
|
+
position: absolute;
|
|
275
|
+
top: 0;
|
|
276
|
+
width: 100%;
|
|
277
|
+
z-index: -1;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.v-card__content {
|
|
281
|
+
border-radius: inherit;
|
|
282
|
+
overflow: hidden;
|
|
283
|
+
position: relative;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.v-card__loader {
|
|
287
|
+
bottom: auto;
|
|
288
|
+
top: 0;
|
|
289
|
+
left: 0;
|
|
290
|
+
position: absolute;
|
|
291
|
+
right: 0;
|
|
292
|
+
width: 100%;
|
|
293
|
+
z-index: 1;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.v-card__overlay {
|
|
297
|
+
background-color: currentColor;
|
|
298
|
+
border-radius: inherit;
|
|
299
|
+
position: absolute;
|
|
300
|
+
top: 0;
|
|
301
|
+
right: 0;
|
|
302
|
+
bottom: 0;
|
|
303
|
+
left: 0;
|
|
304
|
+
pointer-events: none;
|
|
305
|
+
opacity: 0;
|
|
306
|
+
transition: opacity 0.2s ease-in-out;
|
|
307
|
+
}
|
|
308
|
+
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
.v-carousel {
|
|
2
|
+
overflow: hidden;
|
|
3
|
+
position: relative;
|
|
4
|
+
width: 100%;
|
|
5
|
+
}
|
|
6
|
+
.v-carousel__controls {
|
|
7
|
+
align-items: center;
|
|
8
|
+
bottom: 0;
|
|
9
|
+
display: flex;
|
|
10
|
+
height: 50px;
|
|
11
|
+
justify-content: center;
|
|
12
|
+
list-style-type: none;
|
|
13
|
+
position: absolute;
|
|
14
|
+
width: 100%;
|
|
15
|
+
z-index: 1;
|
|
16
|
+
}
|
|
17
|
+
.v-carousel__controls {
|
|
18
|
+
background: rgba(var(--v-theme-surface-variant), 0.3);
|
|
19
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
20
|
+
}
|
|
21
|
+
.v-carousel__controls > .v-item-group {
|
|
22
|
+
flex: 0 1 auto;
|
|
23
|
+
}
|
|
24
|
+
.v-carousel__controls__item {
|
|
25
|
+
margin: 0 8px;
|
|
26
|
+
}
|
|
27
|
+
.v-carousel__controls__item .v-icon {
|
|
28
|
+
opacity: 0.5;
|
|
29
|
+
}
|
|
30
|
+
.v-carousel__controls__item--active .v-icon {
|
|
31
|
+
opacity: 1;
|
|
32
|
+
vertical-align: middle;
|
|
33
|
+
}
|
|
34
|
+
.v-carousel__controls__item:hover {
|
|
35
|
+
background: none;
|
|
36
|
+
}
|
|
37
|
+
.v-carousel__controls__item:hover .v-icon {
|
|
38
|
+
opacity: 0.8;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.v-carousel__progress {
|
|
42
|
+
margin: 0;
|
|
43
|
+
position: absolute;
|
|
44
|
+
bottom: 0;
|
|
45
|
+
left: 0;
|
|
46
|
+
right: 0;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.v-carousel-item {
|
|
50
|
+
display: block;
|
|
51
|
+
height: inherit;
|
|
52
|
+
text-decoration: none;
|
|
53
|
+
}
|
|
54
|
+
.v-carousel-item > .v-img {
|
|
55
|
+
height: inherit;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.v-carousel--hide-delimiter-background .v-carousel__controls {
|
|
59
|
+
background: transparent;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.v-carousel--vertical-delimiters .v-carousel__controls {
|
|
63
|
+
flex-direction: column;
|
|
64
|
+
height: 100% !important;
|
|
65
|
+
width: 50px;
|
|
66
|
+
}
|
|
67
|
+
|