@eeacms/volto-cca-policy 0.1.9 → 0.1.10
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 +9 -1
- package/package.json +1 -1
- package/src/index.js +1 -1
- package/theme/elements/button.overrides +22 -0
- package/theme/globals/site.overrides +16 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ 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.10](https://github.com/eea/volto-cca-policy/compare/0.1.9...0.1.10) - 20 March 2023
|
|
8
|
+
|
|
9
|
+
#### :hammer_and_wrench: Others
|
|
10
|
+
|
|
11
|
+
- Prettier [kreafox - [`89cd1e5`](https://github.com/eea/volto-cca-policy/commit/89cd1e5d8c72533227298dfa510e379b21aab8f4)]
|
|
12
|
+
- Add style for full class [kreafox - [`b124820`](https://github.com/eea/volto-cca-policy/commit/b124820402b0c775619f5f8e4865a08120811173)]
|
|
13
|
+
- Update footer link [kreafox - [`b587810`](https://github.com/eea/volto-cca-policy/commit/b5878105561ad5c2fcbb257aad4d50c112928809)]
|
|
14
|
+
- Add button.overrides [kreafox - [`0c4c12b`](https://github.com/eea/volto-cca-policy/commit/0c4c12bbc72cad147a5d4b192b58f0a9c724a873)]
|
|
7
15
|
### [0.1.9](https://github.com/eea/volto-cca-policy/compare/0.1.8...0.1.9) - 20 March 2023
|
|
8
16
|
|
|
9
17
|
#### :hammer_and_wrench: Others
|
|
@@ -14,7 +22,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
14
22
|
- Use latest eea-design-system [kreafox - [`460a28b`](https://github.com/eea/volto-cca-policy/commit/460a28b99d7aa17d1eab27052772841e08ba44fe)]
|
|
15
23
|
- Better logo [kreafox - [`5dda132`](https://github.com/eea/volto-cca-policy/commit/5dda132268f5943e3fbfcf0689088afbc9a85d25)]
|
|
16
24
|
- Update footer [kreafox - [`680f29a`](https://github.com/eea/volto-cca-policy/commit/680f29acf1458ea238df114ad464c3d0025cd707)]
|
|
17
|
-
- Add override for volto-banner [Tiberiu Ichim - [`16d921a`](https://github.com/eea/volto-cca-policy/commit/16d921a65948c1c5adda6a5e16e18b5ccf262fdc)]
|
|
18
25
|
### [0.1.8](https://github.com/eea/volto-cca-policy/compare/0.1.7...0.1.8) - 16 March 2023
|
|
19
26
|
|
|
20
27
|
#### :hammer_and_wrench: Others
|
|
@@ -279,6 +286,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
279
286
|
#### :hammer_and_wrench: Others
|
|
280
287
|
|
|
281
288
|
- Refs #158294 - Update supported languages list. [GhitaB - [`0a4f91f`](https://github.com/eea/volto-cca-policy/commit/0a4f91f39b7edc367bd4c127d6a8f273c7788361)]
|
|
289
|
+
- Add Sonarqube tag using cca-frontend addons list [EEA Jenkins - [`8f1f9ce`](https://github.com/eea/volto-cca-policy/commit/8f1f9ce6c22805670cc0800d3c779b6d619d0f31)]
|
|
282
290
|
### [0.1.1](https://github.com/eea/volto-cca-policy/compare/0.1.0...0.1.1) - 13 December 2022
|
|
283
291
|
|
|
284
292
|
#### :hammer_and_wrench: Others
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
.ui.basic.button {
|
|
2
|
+
padding: 0;
|
|
3
|
+
border: 0;
|
|
4
|
+
background: transparent;
|
|
5
|
+
cursor: pointer;
|
|
6
|
+
text-align: initial;
|
|
7
|
+
|
|
8
|
+
&:focus {
|
|
9
|
+
outline: none;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.ui.basic.primary.button,
|
|
14
|
+
.ui.basic.secondary.button {
|
|
15
|
+
box-shadow: none !important;
|
|
16
|
+
|
|
17
|
+
&:hover,
|
|
18
|
+
&:active {
|
|
19
|
+
background: transparent !important;
|
|
20
|
+
box-shadow: none !important;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -13,6 +13,21 @@ p.has--clear--both:empty {
|
|
|
13
13
|
margin-bottom: 0;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
+
[class~='view-defaultview'] [id='page-document'] > .full,
|
|
17
|
+
[class~='view-viewview'] [id='page-document'] > .full {
|
|
18
|
+
max-width: initial !important;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.full {
|
|
22
|
+
position: relative !important;
|
|
23
|
+
right: 50%;
|
|
24
|
+
left: 50%;
|
|
25
|
+
width: 100vw !important;
|
|
26
|
+
max-width: initial !important;
|
|
27
|
+
margin-right: -50vw !important;
|
|
28
|
+
margin-left: -50vw !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
16
31
|
// Adaptation option view styles
|
|
17
32
|
div.adaptation-option-view,
|
|
18
33
|
div.case-study-view {
|
|
@@ -134,6 +149,7 @@ body.subsite-mkh {
|
|
|
134
149
|
}
|
|
135
150
|
|
|
136
151
|
.eea.header .subsite-logo {
|
|
152
|
+
z-index: unset;
|
|
137
153
|
height: 100%;
|
|
138
154
|
|
|
139
155
|
.logo {
|