@eeacms/volto-eea-design-system 0.5.4 → 0.5.5
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
CHANGED
|
@@ -4,8 +4,18 @@ 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.5.5](https://github.com/eea/volto-eea-design-system/compare/0.5.4...0.5.5)
|
|
8
|
+
|
|
9
|
+
- Autobuild of docusaurus docs [`83cf8df`](https://github.com/eea/volto-eea-design-system/commit/83cf8df2a3de124b71a0641a821ae9538f3e45e3)
|
|
10
|
+
- change(homepage): moved fixes of homepage to custom and colored carousel arrow [`0a226ef`](https://github.com/eea/volto-eea-design-system/commit/0a226ef3f5d328d45513764bec02d58241417db0)
|
|
11
|
+
- Autobuild of docusaurus docs [`304577a`](https://github.com/eea/volto-eea-design-system/commit/304577a4b79d256bbdc50fc9c75d9d0efc0769b9)
|
|
12
|
+
- fix(contentBox): color of cards when inside content-boxes [`76a4520`](https://github.com/eea/volto-eea-design-system/commit/76a452031473f43928dee1d3ee705d06101e6a21)
|
|
13
|
+
|
|
7
14
|
#### [0.5.4](https://github.com/eea/volto-eea-design-system/compare/0.5.3...0.5.4)
|
|
8
15
|
|
|
16
|
+
> 16 June 2022
|
|
17
|
+
|
|
18
|
+
- content box and header fixes [`#200`](https://github.com/eea/volto-eea-design-system/pull/200)
|
|
9
19
|
- change(content-box): content box links are now underlined [`f7976f5`](https://github.com/eea/volto-eea-design-system/commit/f7976f50f5807a884522d6dba871a2757a1c5a98)
|
|
10
20
|
- Autobuild of docusaurus docs [`89a258a`](https://github.com/eea/volto-eea-design-system/commit/89a258a84ae58ffa0be79baf99d562213e8c8491)
|
|
11
21
|
- fix(header): ensure transparency goes as high as the search icon [`4470e13`](https://github.com/eea/volto-eea-design-system/commit/4470e132e1e70fba3fdfb33fc63a1cc9d62700e8)
|
package/package.json
CHANGED
|
@@ -55,3 +55,10 @@
|
|
|
55
55
|
.content-box[class*="ary"] a {
|
|
56
56
|
color: inherit;
|
|
57
57
|
}
|
|
58
|
+
|
|
59
|
+
// set color of default cards to black when we are inside a content-box which has the ability to set
|
|
60
|
+
// color classes
|
|
61
|
+
.content-box[class*="ary"] [class="ui fluid card"] {
|
|
62
|
+
color: @grey-6;
|
|
63
|
+
}
|
|
64
|
+
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/*-------------------
|
|
2
|
+
Homepage
|
|
3
|
+
--------------------*/
|
|
1
4
|
// hide stagingBanner on homepage
|
|
2
5
|
.homepage .stagingBanner {
|
|
3
6
|
display: none !important;
|
|
@@ -15,10 +18,13 @@
|
|
|
15
18
|
|
|
16
19
|
}
|
|
17
20
|
|
|
18
|
-
//
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
21
|
+
// use homepage text color for color of cards that are within a content-box that has a variant class
|
|
22
|
+
.homepage .content-box[class*="ary"] [class="ui fluid card"] {
|
|
23
|
+
color: @blue-grey-5;
|
|
24
|
+
}
|
|
25
|
+
// set carousel arrow to homepage color
|
|
26
|
+
.homepage .cards-carousel .ui.button.icon.slider-arrow .icon {
|
|
27
|
+
color: @blue-grey-5;
|
|
22
28
|
}
|
|
23
29
|
|
|
24
30
|
// remove text decoration on links that might be added by content-box a rule
|