@eeacms/volto-eea-design-system 0.2.1 → 0.2.4
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/.github/workflows/auto-comment.yml +20 -0
- package/CHANGELOG.md +165 -1
- package/package.json +1 -1
- package/src/semantic.less +1 -5
- package/src/ui/Banner/Banner.jsx +1 -1
- package/src/ui/Breadcrumbs/Breadcrumb.stories.jsx +3 -0
- package/src/ui/Breadcrumbs/Breadcrumbs.jsx +1 -0
- package/src/ui/CallToAction/CallToAction.stories.jsx +239 -0
- package/src/ui/{AvatarGrid → Card/AvatarGrid}/AvatarGrid.jsx +14 -14
- package/src/ui/{AvatarGrid → Card/AvatarGrid}/AvatarGrid.stories.jsx +24 -21
- package/src/ui/Card/Card.stories.jsx +249 -0
- package/src/ui/Card/PublicationCard.stories.jsx +46 -0
- package/src/ui/Card/RelatedContent/RelatedContent.jsx +76 -0
- package/src/ui/Card/RelatedContent/RelatedContent.stories.jsx +313 -0
- package/src/ui/Card/RoundedCard.stories.jsx +96 -0
- package/src/ui/{Button → Form/Button}/Button.stories.jsx +88 -52
- package/src/ui/KeyContent/KeyContent.jsx +9 -3
- package/src/ui/KeyContent/KeyContent.stories.jsx +1 -22
- package/src/ui/Loader/Loader.stories.jsx +21 -3
- package/src/ui/Testimonial/Testimonial.jsx +9 -8
- package/src/ui/Testimonial/Testimonial.stories.jsx +14 -11
- package/src/ui/Timeline/Timeline.jsx +1 -1
- package/src/ui/Timeline/Timeline.stories.jsx +12 -12
- package/src/ui/index.js +2 -4
- package/theme/theme.config +2 -4
- package/theme/themes/eea/collections/breadcrumb.overrides +12 -20
- package/theme/themes/eea/collections/breadcrumb.variables +3 -3
- package/theme/themes/eea/collections/form.overrides +116 -0
- package/theme/themes/eea/elements/button.overrides +172 -113
- package/theme/themes/eea/elements/button.variables +20 -6
- package/theme/themes/eea/elements/container.overrides +4 -19
- package/theme/themes/eea/elements/container.variables +5 -4
- package/theme/themes/eea/elements/label.overrides +12 -3
- package/theme/themes/eea/elements/label.variables +1 -1
- package/theme/themes/eea/elements/list.overrides +10 -0
- package/theme/themes/eea/elements/list.variables +3 -1
- package/theme/themes/eea/elements/loader.overrides +197 -0
- package/theme/themes/eea/elements/loader.variables +12 -1
- package/theme/themes/eea/elements/segment.overrides +77 -0
- package/theme/themes/eea/elements/segment.variables +2 -2
- package/theme/themes/eea/extras/avatarGrid.less +22 -24
- package/theme/themes/eea/extras/avatarGrid.variables +4 -8
- package/theme/themes/eea/extras/banner.less +32 -41
- package/theme/themes/eea/extras/blockquote.less +6 -3
- package/theme/themes/eea/extras/footer.less +239 -241
- package/theme/themes/eea/extras/header.less +1 -1
- package/theme/themes/eea/extras/keyContent.less +18 -16
- package/theme/themes/eea/extras/keyContent.variables +13 -7
- package/theme/themes/eea/extras/main.overrides +9 -0
- package/theme/themes/eea/extras/main.variables +3 -0
- package/theme/themes/eea/extras/pullquote.less +3 -3
- package/theme/themes/eea/extras/relatedContent.less +27 -0
- package/theme/themes/eea/extras/relatedContent.variables +3 -0
- package/theme/themes/eea/extras/tagList.less +0 -1
- package/theme/themes/eea/globals/site.variables +16 -12
- package/theme/themes/eea/modules/modal.overrides +4 -0
- package/theme/themes/eea/modules/progress.variables +1 -1
- package/theme/themes/eea/modules/tab.overrides +24 -0
- package/theme/themes/eea/modules/tab.variables +11 -1
- package/theme/themes/eea/views/card.overrides +242 -25
- package/theme/themes/eea/views/card.variables +92 -8
- package/src/ui/Avatar/Avatar.jsx +0 -32
- package/src/ui/Avatar/Avatar.stories.jsx +0 -61
- package/src/ui/PublicationCard/PublicationCard.jsx +0 -27
- package/src/ui/PublicationCard/PublicationCard.stories.jsx +0 -69
- package/src/ui/RelatedContent/RelatedContent.jsx +0 -90
- package/src/ui/RelatedContent/RelatedContent.stories.jsx +0 -80
- package/theme/themes/eea/extras/avatar.less +0 -97
- package/theme/themes/eea/extras/avatar.variables +0 -34
- package/theme/themes/eea/extras/publicationCard.less +0 -62
- package/theme/themes/eea/extras/publicationCard.variables +0 -24
|
@@ -8,266 +8,264 @@
|
|
|
8
8
|
--------------------*/
|
|
9
9
|
|
|
10
10
|
footer {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
display: flex;
|
|
12
|
+
flex-direction: column;
|
|
13
|
+
align-items: center;
|
|
14
|
+
background: @footerBackgroundGrandient;
|
|
15
|
+
color: @white;
|
|
16
|
+
|
|
17
|
+
.wrapper {
|
|
18
|
+
width: @wrapperWidth;
|
|
19
|
+
padding: @mobileWrapperPadding;
|
|
20
|
+
background-image: @wrapperBackgroundImage;
|
|
21
|
+
background-position: @wrapperBackgroundPosition;
|
|
22
|
+
background-size: @mobileWrapperBackgroundSize;
|
|
23
|
+
|
|
24
|
+
.theme-sites {
|
|
25
|
+
padding: @mobileThemeSitesPadding;
|
|
26
|
+
|
|
27
|
+
.header {
|
|
28
|
+
font-weight: @headerFontWeight;
|
|
29
|
+
font-size: @mobileHeaderFontSize;
|
|
30
|
+
margin-bottom: @mobileHeaderMarginBottom;
|
|
31
|
+
text-align: center;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.logos .logo {
|
|
35
|
+
display: flex;
|
|
36
|
+
align-items: center;
|
|
37
|
+
justify-content: center;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
.subfooter {
|
|
41
|
+
.item {
|
|
42
|
+
margin-top: @mobileItemMarginTop;
|
|
43
|
+
|
|
44
|
+
.site.logo {
|
|
45
|
+
.description {
|
|
46
|
+
margin: @mobileDescriptionMargin;
|
|
47
|
+
font-size: @mobileDescriptionFontSize;
|
|
48
|
+
line-height: @mobileDescriptionLineHeight;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
16
51
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
52
|
+
.eionet.logo {
|
|
53
|
+
display: flex;
|
|
54
|
+
align-items: center;
|
|
55
|
+
margin-top: @mobileEionetMarginTop;
|
|
56
|
+
|
|
57
|
+
img {
|
|
58
|
+
width: @mobileEionetLogoWidth;
|
|
59
|
+
margin-left: @mobileEionetLogoMarginLeft;
|
|
60
|
+
margin-right: @mobileEionetLogoMarginRight;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.description {
|
|
64
|
+
padding-top: @mobileEionetDescriptionPaddingTop;
|
|
65
|
+
font-size: @mobileEionetDescriptionFontSize;
|
|
66
|
+
line-height: @mobileEionetDescriptionLineHeight;
|
|
67
|
+
font-weight: @eionetDescriptionFontWeight;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
33
70
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
}
|
|
71
|
+
.header {
|
|
72
|
+
margin-bottom: @mobileItemHeaderMarginBottom;
|
|
73
|
+
font-size: @mobileItemHeaderFontSize;
|
|
74
|
+
font-weight: @itemHeaderFontWeight;
|
|
39
75
|
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
display: flex;
|
|
54
|
-
align-items: center;
|
|
55
|
-
margin-top: @mobileEionetMarginTop;
|
|
56
|
-
|
|
57
|
-
img {
|
|
58
|
-
width: @mobileEionetLogoWidth;
|
|
59
|
-
margin-left: @mobileEionetLogoMarginLeft;
|
|
60
|
-
margin-right: @mobileEionetLogoMarginRight;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.description {
|
|
64
|
-
padding-top: @mobileEionetDescriptionPaddingTop;
|
|
65
|
-
font-size: @mobileEionetDescriptionFontSize;
|
|
66
|
-
line-height: @mobileEionetDescriptionLineHeight;
|
|
67
|
-
font-weight: @eionetDescriptionFontWeight;
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.header {
|
|
72
|
-
margin-bottom: @mobileItemHeaderMarginBottom;
|
|
73
|
-
font-size: @mobileItemHeaderFontSize;
|
|
74
|
-
font-weight: @itemHeaderFontWeight;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.contact {
|
|
78
|
-
display: flex;
|
|
79
|
-
align-items: center;
|
|
80
|
-
margin: @mobileContactMargin;
|
|
81
|
-
font-size: @mobileContactFontSize;
|
|
82
|
-
|
|
83
|
-
a {
|
|
84
|
-
color: @menuLinkColor;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
.address {
|
|
88
|
-
font-size: @mobileAdressFontSize;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.social a {
|
|
92
|
-
color: @socialIconColor;
|
|
93
|
-
|
|
94
|
-
&:active,
|
|
95
|
-
&:hover {
|
|
96
|
-
color: @socialIconColor;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
i.icon {
|
|
100
|
-
font-size: @mobileSocialIconSize;
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
.menu {
|
|
105
|
-
display: flex;
|
|
106
|
-
align-items: center;
|
|
107
|
-
justify-content: space-around;
|
|
108
|
-
margin: @mobileMenuMargin;
|
|
109
|
-
|
|
110
|
-
a {
|
|
111
|
-
color: @menuLinkColor;
|
|
112
|
-
font-weight: @menuFontWeight;
|
|
113
|
-
font-size: @mobileMenuFontSize;
|
|
114
|
-
cursor: pointer;
|
|
115
|
-
|
|
116
|
-
&:hover,
|
|
117
|
-
&:active {
|
|
118
|
-
color: @menuLinkColor;
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
}
|
|
76
|
+
|
|
77
|
+
.contact {
|
|
78
|
+
display: flex;
|
|
79
|
+
align-items: center;
|
|
80
|
+
margin: @mobileContactMargin;
|
|
81
|
+
font-size: @mobileContactFontSize;
|
|
82
|
+
|
|
83
|
+
a {
|
|
84
|
+
color: @menuLinkColor;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
.address {
|
|
88
|
+
font-size: @mobileAdressFontSize;
|
|
122
89
|
}
|
|
90
|
+
|
|
91
|
+
.social a {
|
|
92
|
+
color: @socialIconColor;
|
|
93
|
+
|
|
94
|
+
&:active,
|
|
95
|
+
&:hover {
|
|
96
|
+
color: @socialIconColor;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
i.icon {
|
|
100
|
+
font-size: @mobileSocialIconSize;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
.menu {
|
|
105
|
+
display: flex;
|
|
106
|
+
align-items: center;
|
|
107
|
+
justify-content: space-around;
|
|
108
|
+
margin: @mobileMenuMargin;
|
|
109
|
+
|
|
110
|
+
a {
|
|
111
|
+
color: @menuLinkColor;
|
|
112
|
+
font-weight: @menuFontWeight;
|
|
113
|
+
font-size: @mobileMenuFontSize;
|
|
114
|
+
cursor: pointer;
|
|
115
|
+
|
|
116
|
+
&:hover,
|
|
117
|
+
&:active {
|
|
118
|
+
color: @menuLinkColor;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
123
122
|
}
|
|
123
|
+
}
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
@media only screen and (min-width: @tabletBreakpoint) {
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
127
|
+
footer {
|
|
128
|
+
.wrapper {
|
|
129
|
+
.theme-sites {
|
|
130
|
+
.header {
|
|
131
|
+
font-size: @tabletHeaderFontSize;
|
|
132
|
+
margin-bottom: @tabletHeaderMarginBottom;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
.subfooter {
|
|
136
|
+
.item {
|
|
137
|
+
margin-top: @tabletItemMarginTop;
|
|
138
|
+
|
|
139
|
+
.site.logo {
|
|
140
|
+
img {
|
|
141
|
+
width: @tabletSiteLogoWidth;
|
|
142
|
+
display: @tabletSiteLogoDisplay;
|
|
143
|
+
}
|
|
144
|
+
.description {
|
|
145
|
+
font-size: @tabletDescriptionFontSize;
|
|
146
|
+
line-height: @tabletDescriptionLineHeight;
|
|
134
147
|
}
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
.eionet.logo {
|
|
151
|
-
img {
|
|
152
|
-
width: @tabletEionetLogoWidth;
|
|
153
|
-
margin-left: @tabletEionetLogoMarginLeft;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.description {
|
|
157
|
-
padding-top: @tabletEionetDescriptionPaddingTop;
|
|
158
|
-
font-size: @tabetEionetDescriptionFontSize;
|
|
159
|
-
line-height: @tabletEionetDescriptionLineHeight;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.header {
|
|
164
|
-
margin-bottom: @tabletItemHeaderMarginBottom;
|
|
165
|
-
font-size: @tabletItemHeaderFontSize;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
.contact {
|
|
169
|
-
font-size: @tabletContactFontSize;
|
|
170
|
-
margin: @tabletContactMargin;
|
|
171
|
-
|
|
172
|
-
i.big.icon {
|
|
173
|
-
margin-right: @tabletContactIconMarginRight;
|
|
174
|
-
font-size: @tabletContactIconFontSize;
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
.address {
|
|
179
|
-
font-size: @tabletAddressFontSize;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.social a i.icon {
|
|
183
|
-
font-size: @tabletSocialIconSize;
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
.menu {
|
|
187
|
-
width: @tabletMenuWidth;
|
|
188
|
-
margin: @tabletMenuMargin;
|
|
189
|
-
|
|
190
|
-
a {
|
|
191
|
-
font-size: @tabletMenuFontSize;
|
|
192
|
-
}
|
|
193
|
-
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.eionet.logo {
|
|
151
|
+
img {
|
|
152
|
+
width: @tabletEionetLogoWidth;
|
|
153
|
+
margin-left: @tabletEionetLogoMarginLeft;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.description {
|
|
157
|
+
padding-top: @tabletEionetDescriptionPaddingTop;
|
|
158
|
+
font-size: @tabetEionetDescriptionFontSize;
|
|
159
|
+
line-height: @tabletEionetDescriptionLineHeight;
|
|
194
160
|
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.header {
|
|
164
|
+
margin-bottom: @tabletItemHeaderMarginBottom;
|
|
165
|
+
font-size: @tabletItemHeaderFontSize;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.contact {
|
|
169
|
+
font-size: @tabletContactFontSize;
|
|
170
|
+
margin: @tabletContactMargin;
|
|
171
|
+
|
|
172
|
+
i.big.icon {
|
|
173
|
+
margin-right: @tabletContactIconMarginRight;
|
|
174
|
+
font-size: @tabletContactIconFontSize;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.address {
|
|
179
|
+
font-size: @tabletAddressFontSize;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.social a i.icon {
|
|
183
|
+
font-size: @tabletSocialIconSize;
|
|
184
|
+
}
|
|
195
185
|
}
|
|
186
|
+
.menu {
|
|
187
|
+
width: @tabletMenuWidth;
|
|
188
|
+
margin: @tabletMenuMargin;
|
|
189
|
+
|
|
190
|
+
a {
|
|
191
|
+
font-size: @tabletMenuFontSize;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
}
|
|
196
195
|
}
|
|
196
|
+
}
|
|
197
197
|
}
|
|
198
|
-
|
|
198
|
+
|
|
199
199
|
@media only screen and (min-width: @computerBreakpoint) {
|
|
200
|
-
|
|
200
|
+
footer {
|
|
201
|
+
.wrapper {
|
|
202
|
+
padding: @computerWrapperPadding;
|
|
203
|
+
background-size: @computerWrapperBackgroundSize;
|
|
201
204
|
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
background-size: @computerWrapperBackgroundSize;
|
|
205
|
+
.theme-sites {
|
|
206
|
+
padding: @computerThemeSitesPadding;
|
|
205
207
|
|
|
206
|
-
|
|
207
|
-
|
|
208
|
+
.header {
|
|
209
|
+
font-size: @computerHeaderFontSize;
|
|
210
|
+
margin-bottom: @computerHeaderMarginBottom;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
.subfooter {
|
|
214
|
+
.item {
|
|
215
|
+
margin-top: @computerItemMarginTop;
|
|
216
|
+
|
|
217
|
+
.site.logo {
|
|
218
|
+
img {
|
|
219
|
+
width: @computerSiteLogoWidth;
|
|
220
|
+
}
|
|
221
|
+
.description {
|
|
222
|
+
margin: @computerDescriptionMargin;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.eionet.logo {
|
|
227
|
+
margin-top: @computerEionetMarginTop;
|
|
228
|
+
|
|
229
|
+
img {
|
|
230
|
+
width: @computerEionetLogoWidth;
|
|
231
|
+
margin-left: @computerEionetLogoMarginLeft;
|
|
232
|
+
margin-right: @computerEionetLogoMarginRight;
|
|
233
|
+
}
|
|
208
234
|
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
}
|
|
235
|
+
.description {
|
|
236
|
+
font-size: @computerEionetDescriptionFontSize;
|
|
237
|
+
line-height: @computerEionetDescriptionLineHeight;
|
|
213
238
|
}
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
.eionet.logo {
|
|
229
|
-
margin-top: @computerEionetMarginTop;
|
|
230
|
-
|
|
231
|
-
img {
|
|
232
|
-
width: @computerEionetLogoWidth;
|
|
233
|
-
margin-left: @computerEionetLogoMarginLeft;
|
|
234
|
-
margin-right: @computerEionetLogoMarginRight;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
.description {
|
|
238
|
-
font-size: @computerEionetDescriptionFontSize;
|
|
239
|
-
line-height: @computerEionetDescriptionLineHeight;
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.header {
|
|
244
|
-
margin-bottom: @computerItemHeaderMarginBottom;
|
|
245
|
-
font-size: @computerItemHeaderFontSize;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
.contact {
|
|
249
|
-
font-size: @computerContactFontSize;
|
|
250
|
-
margin: @computerContactMargin;
|
|
251
|
-
|
|
252
|
-
i.big.icon {
|
|
253
|
-
font-size: @computerContactIconFontSize;
|
|
254
|
-
}
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
.social a i.icon {
|
|
258
|
-
font-size: @computerSocialIconSize;
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
.menu {
|
|
262
|
-
justify-content: flex-end;
|
|
263
|
-
width: 100%;
|
|
264
|
-
|
|
265
|
-
a {
|
|
266
|
-
padding-left: 3rem;
|
|
267
|
-
font-size: @computerMenuFontSize;
|
|
268
|
-
}
|
|
269
|
-
}
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.header {
|
|
242
|
+
margin-bottom: @computerItemHeaderMarginBottom;
|
|
243
|
+
font-size: @computerItemHeaderFontSize;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.contact {
|
|
247
|
+
font-size: @computerContactFontSize;
|
|
248
|
+
margin: @computerContactMargin;
|
|
249
|
+
|
|
250
|
+
i.big.icon {
|
|
251
|
+
font-size: @computerContactIconFontSize;
|
|
270
252
|
}
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.social a i.icon {
|
|
256
|
+
font-size: @computerSocialIconSize;
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
.menu {
|
|
260
|
+
justify-content: flex-end;
|
|
261
|
+
width: 100%;
|
|
262
|
+
|
|
263
|
+
a {
|
|
264
|
+
padding-left: 3rem;
|
|
265
|
+
font-size: @computerMenuFontSize;
|
|
266
|
+
}
|
|
271
267
|
}
|
|
268
|
+
}
|
|
272
269
|
}
|
|
270
|
+
}
|
|
273
271
|
}
|
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
align-items: center;
|
|
23
23
|
justify-content: space-between;
|
|
24
24
|
z-index: @topSectionZindex;
|
|
25
|
-
width: 100% !important; // Semantic has auto
|
|
26
25
|
}
|
|
27
26
|
.item {
|
|
28
27
|
display: flex;
|
|
@@ -392,6 +391,7 @@ Header Actions - Burger and Search Icons
|
|
|
392
391
|
}
|
|
393
392
|
|
|
394
393
|
.ui.text.menu {
|
|
394
|
+
flex-wrap: wrap;
|
|
395
395
|
display: flex;
|
|
396
396
|
width: 88%;
|
|
397
397
|
max-height: 20px;
|
|
@@ -4,33 +4,35 @@
|
|
|
4
4
|
@import (multiple) '../../theme.config';
|
|
5
5
|
|
|
6
6
|
.eea.key-content {
|
|
7
|
-
background-color: @keyContentBackgroundColor;
|
|
8
|
-
|
|
9
7
|
.title {
|
|
10
|
-
text-align:
|
|
11
|
-
|
|
12
|
-
|
|
8
|
+
text-align: left;
|
|
9
|
+
color: @keyContentColoredTitleColor;
|
|
10
|
+
margin-left: @keyContentTitleMarginLeft;
|
|
13
11
|
}
|
|
14
12
|
|
|
15
13
|
.ui.bulleted.list {
|
|
16
|
-
|
|
14
|
+
display: flex;
|
|
15
|
+
flex-direction: column;
|
|
16
|
+
gap: @keyContentListGap;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
.item {
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
color: @keyContentItemColor;
|
|
21
|
+
font-size: @mobileKeyContentItemFontSize;
|
|
22
|
+
margin-left: @keyContentItemMarginLeft;
|
|
22
23
|
}
|
|
23
24
|
|
|
24
|
-
.item::before {
|
|
25
|
-
color: @
|
|
26
|
-
|
|
25
|
+
.ui.bulleted.list > .item::before {
|
|
26
|
+
color: @keyContentListBulletColor;
|
|
27
|
+
font-size: @keyContentListBulletFontSize;
|
|
28
|
+
margin-left: @keyContentItemMarginLeftNegative;
|
|
27
29
|
}
|
|
28
30
|
}
|
|
29
31
|
|
|
30
|
-
|
|
31
|
-
.
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
@media only screen and (min-width: @computerBreakpoint) {
|
|
33
|
+
.eea.key-content {
|
|
34
|
+
.item {
|
|
35
|
+
font-size: @computerKeyContentItemFontSize;
|
|
36
|
+
}
|
|
35
37
|
}
|
|
36
38
|
}
|
|
@@ -2,17 +2,23 @@
|
|
|
2
2
|
Key Content
|
|
3
3
|
*******************************/
|
|
4
4
|
|
|
5
|
-
@keyContentBackgroundColor : #f9f9f9;
|
|
6
5
|
|
|
7
6
|
/* Title */
|
|
8
|
-
@keyContentTitleFontWeight: 700;
|
|
9
|
-
@keyContentTitleFontSize : 36px;
|
|
10
7
|
|
|
11
8
|
/* List */
|
|
12
|
-
@
|
|
13
|
-
|
|
14
|
-
|
|
9
|
+
@keyContentListGap: @largeGap;
|
|
10
|
+
|
|
11
|
+
/* Item */
|
|
12
|
+
@keyContentItemColor : @japaneseIndigo;
|
|
13
|
+
@mobileKeyContentItemFontSize : 1rem;
|
|
14
|
+
@computerKeyContentItemFontSize: 1.25rem;
|
|
15
|
+
@keyContentItemMarginLeft : @hugeGap;
|
|
16
|
+
@keyContentItemMarginLeftNegative: -2rem;
|
|
17
|
+
|
|
18
|
+
/* Bullet */
|
|
19
|
+
@keyContentListBulletColor : @secondaryColor;
|
|
20
|
+
@keyContentListBulletFontSize : 3rem;
|
|
15
21
|
|
|
16
22
|
/* Colored Title */
|
|
17
23
|
@keyContentColoredTitleColor : @darkCyan;
|
|
18
|
-
@
|
|
24
|
+
@keyContentTitleMarginLeft : 2.8rem;
|
|
@@ -29,3 +29,12 @@
|
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
+
|
|
33
|
+
// Ensure Add block is visible with no blocks added on page load
|
|
34
|
+
#page-add {
|
|
35
|
+
min-height: @pageAddMinHeight;
|
|
36
|
+
}
|
|
37
|
+
// added override for css found in volto-block-style/stretchStyleDefaultView.css
|
|
38
|
+
#main main {
|
|
39
|
+
overflow: inherit;
|
|
40
|
+
}
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
i.icomn:first-child {
|
|
31
|
-
align-self:flex-start
|
|
31
|
+
align-self: flex-start;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
i.icon:last-child {
|
|
35
35
|
align-self: flex-end;
|
|
36
|
-
}
|
|
36
|
+
}
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
.author {
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
.eea.pullquote {
|
|
56
56
|
.quotes.wrapper {
|
|
57
57
|
.quote {
|
|
58
|
-
padding
|
|
58
|
+
padding: @tabletQuotePadding;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
i.icon {
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
@type: 'extra';
|
|
2
|
+
@element: 'relatedContent';
|
|
3
|
+
|
|
4
|
+
@import (multiple) '../../theme.config';
|
|
5
|
+
|
|
6
|
+
/*-------------------
|
|
7
|
+
Related Content
|
|
8
|
+
--------------------*/
|
|
9
|
+
|
|
10
|
+
.related-content-wrapper {
|
|
11
|
+
.button-wrapper {
|
|
12
|
+
display: flex;
|
|
13
|
+
justify-content: center;
|
|
14
|
+
}
|
|
15
|
+
.ui.grid > .column:not(.row) {
|
|
16
|
+
padding-top: 0;
|
|
17
|
+
padding-bottom: 0;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@media only screen and (min-width: @tabletBreakpoint) {
|
|
22
|
+
.related-content-wrapper {
|
|
23
|
+
.button-wrapper {
|
|
24
|
+
justify-content: right;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|