@eeacms/volto-clms-theme 1.0.78 → 1.0.79
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 -0
- package/package.json +1 -1
- package/src/components/CclCard/cards.less +14 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +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
|
+
#### [1.0.79](https://github.com/eea/volto-clms-theme/compare/1.0.78...1.0.79)
|
|
8
|
+
|
|
9
|
+
- Bugs n improvements [`#224`](https://github.com/eea/volto-clms-theme/pull/224)
|
|
10
|
+
- Card image border [`e8b01d5`](https://github.com/eea/volto-clms-theme/commit/e8b01d567e483658b6c2b653d781d55e4ec4aac9)
|
|
11
|
+
- Card image border [`2255b89`](https://github.com/eea/volto-clms-theme/commit/2255b8983fce645fcf792f3ba6c0b149c2dea845)
|
|
12
|
+
|
|
7
13
|
#### [1.0.78](https://github.com/eea/volto-clms-theme/compare/1.0.77...1.0.78)
|
|
8
14
|
|
|
15
|
+
> 4 March 2022
|
|
16
|
+
|
|
17
|
+
- Card link [`#223`](https://github.com/eea/volto-clms-theme/pull/223)
|
|
9
18
|
- refactor card link [`e3ab510`](https://github.com/eea/volto-clms-theme/commit/e3ab51012c21a1bc62e2600431aac225dbd76003)
|
|
10
19
|
- add link to the entire card [`aee0981`](https://github.com/eea/volto-clms-theme/commit/aee09811585c925a050347259bb10369c0ec4845)
|
|
11
20
|
|
package/package.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.card-line .card-image {
|
|
17
|
+
border: solid 1px #a0b12833;
|
|
17
18
|
margin-right: 1rem;
|
|
18
19
|
}
|
|
19
20
|
|
|
@@ -59,6 +60,7 @@
|
|
|
59
60
|
.card-line-color .card-image {
|
|
60
61
|
width: 12rem;
|
|
61
62
|
height: 12rem;
|
|
63
|
+
border: solid 1px #a0b12833;
|
|
62
64
|
margin: 0;
|
|
63
65
|
}
|
|
64
66
|
|
|
@@ -101,6 +103,7 @@
|
|
|
101
103
|
|
|
102
104
|
.card-block .card-block-image {
|
|
103
105
|
height: 12rem;
|
|
106
|
+
border: solid 1px #a0b12833;
|
|
104
107
|
}
|
|
105
108
|
|
|
106
109
|
.card-block img {
|
|
@@ -137,6 +140,7 @@
|
|
|
137
140
|
|
|
138
141
|
.card-threeColumns .card-threeColumns-image {
|
|
139
142
|
height: 12rem;
|
|
143
|
+
border: solid 1px #a0b12833;
|
|
140
144
|
}
|
|
141
145
|
|
|
142
146
|
.card-threeColumns img {
|
|
@@ -186,13 +190,16 @@
|
|
|
186
190
|
}
|
|
187
191
|
|
|
188
192
|
.card-news .card-news-image {
|
|
193
|
+
width: 10rem;
|
|
194
|
+
height: 10rem;
|
|
189
195
|
flex-shrink: 0;
|
|
196
|
+
border: solid 1px #a0b12833;
|
|
190
197
|
margin-right: 1.5rem;
|
|
191
198
|
}
|
|
192
199
|
|
|
193
200
|
.card-news .card-news-image img {
|
|
194
|
-
width:
|
|
195
|
-
height:
|
|
201
|
+
width: 100%;
|
|
202
|
+
height: 100%;
|
|
196
203
|
object-fit: cover;
|
|
197
204
|
}
|
|
198
205
|
|
|
@@ -249,13 +256,16 @@
|
|
|
249
256
|
}
|
|
250
257
|
|
|
251
258
|
.card-event .card-event-image {
|
|
259
|
+
width: 10rem;
|
|
260
|
+
height: 10rem;
|
|
252
261
|
flex-shrink: 0;
|
|
262
|
+
border: solid 1px #a0b12833;
|
|
253
263
|
margin-right: 1.5rem;
|
|
254
264
|
}
|
|
255
265
|
|
|
256
266
|
.card-event .card-event-image img {
|
|
257
|
-
width:
|
|
258
|
-
height:
|
|
267
|
+
width: 100%;
|
|
268
|
+
height: 100%;
|
|
259
269
|
object-fit: cover;
|
|
260
270
|
}
|
|
261
271
|
|