@eeacms/volto-cca-policy 0.1.33 → 0.1.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/package.json +1 -1
- package/src/index.js +3 -3
- package/theme/globals/site.overrides +29 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
### [0.1.35](https://github.com/eea/volto-cca-policy/compare/0.1.34...0.1.35) - 7 August 2023
|
|
8
|
+
|
|
9
|
+
#### :hammer_and_wrench: Others
|
|
10
|
+
|
|
11
|
+
- Refs #255708 - Styles for Mission homepage: Latest news updates, Latest events listings. [GhitaB - [`997e807`](https://github.com/eea/volto-cca-policy/commit/997e807ac42dc4afd7e610fe80ede272b4cb23fb)]
|
|
12
|
+
- Refs #255708 - Styles for Mission homepage: Latest news updates, Latest events listings. [GhitaB - [`3a74888`](https://github.com/eea/volto-cca-policy/commit/3a7488853332d494179aef84a59303863fbc2434)]
|
|
13
|
+
### [0.1.34](https://github.com/eea/volto-cca-policy/compare/0.1.33...0.1.34) - 4 August 2023
|
|
14
|
+
|
|
15
|
+
#### :hammer_and_wrench: Others
|
|
16
|
+
|
|
17
|
+
- Refs #255577 - Move image cards block to site group, move searchlib back to common. [GhitaB - [`e7d7e56`](https://github.com/eea/volto-cca-policy/commit/e7d7e561cc3eec0f31b2476aa05ec5ac61b816e7)]
|
|
7
18
|
### [0.1.33](https://github.com/eea/volto-cca-policy/compare/0.1.32...0.1.33) - 1 August 2023
|
|
8
19
|
|
|
9
20
|
#### :house: Documentation changes
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -166,11 +166,11 @@ const applyConfig = (config) => {
|
|
|
166
166
|
|
|
167
167
|
// Move blocks to Site group
|
|
168
168
|
const move_to_site = [
|
|
169
|
-
'video',
|
|
170
|
-
'maps',
|
|
171
169
|
'countryFlag',
|
|
172
|
-
'
|
|
170
|
+
'imagecards',
|
|
173
171
|
'layoutSettings',
|
|
172
|
+
'maps',
|
|
173
|
+
'video',
|
|
174
174
|
];
|
|
175
175
|
|
|
176
176
|
for (let block_id of move_to_site) {
|
|
@@ -290,3 +290,32 @@ body.view-viewview.has-toolbar:not(.has-sidebar):not(.has-sidebar-collapsed) {
|
|
|
290
290
|
}
|
|
291
291
|
}
|
|
292
292
|
}
|
|
293
|
+
|
|
294
|
+
/* Mission: Latest news updates, Latest events */
|
|
295
|
+
body.subsite-root.section-mission {
|
|
296
|
+
div.columns-view {
|
|
297
|
+
div.block.listing.default {
|
|
298
|
+
div.items {
|
|
299
|
+
div.listing-item {
|
|
300
|
+
h4 {
|
|
301
|
+
padding-left: 1.5em;
|
|
302
|
+
margin-bottom: 0.5em;
|
|
303
|
+
|
|
304
|
+
&:before {
|
|
305
|
+
position: absolute;
|
|
306
|
+
left: 0;
|
|
307
|
+
content: '\ea6c';
|
|
308
|
+
font-family: remixicon !important;
|
|
309
|
+
font-style: normal;
|
|
310
|
+
font-weight: normal;
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
padding-bottom: 0.5em;
|
|
314
|
+
border: none;
|
|
315
|
+
margin-bottom: 0px !important;
|
|
316
|
+
}
|
|
317
|
+
margin-top: 1.5em;
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
}
|