@internetstiftelsen/styleguide 2.24.3 → 2.24.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@internetstiftelsen/styleguide",
3
- "version": "2.24.3",
3
+ "version": "2.24.5",
4
4
  "main": "dist/components.js",
5
5
  "ports": {
6
6
  "fractal": "3000"
@@ -4,6 +4,7 @@
4
4
  position: relative;
5
5
  width: 100%;
6
6
  overflow: hidden;
7
+ border-radius: $border-radius;
7
8
 
8
9
  > img {
9
10
  display: block;
@@ -196,22 +196,49 @@ html {
196
196
  h4,
197
197
  p,
198
198
  a,
199
- li {
199
+ ul li,
200
+ ol li,
201
+ ul li a,
202
+ ol li a {
200
203
  color: $color-snow;
201
204
  }
202
205
 
203
206
  p a,
204
- li a,
205
207
  h1 a,
206
208
  h2 a,
207
209
  h3 a,
208
- h4 a {
210
+ h4 a,
211
+ ul li a,
212
+ ol li a {
209
213
  &:hover,
210
214
  &:focus {
211
215
  color: $color-cyberspace;
212
216
  }
213
217
  }
214
218
 
219
+ [class*=info-box] {
220
+ h1,
221
+ h2,
222
+ h3,
223
+ h4,
224
+ p,
225
+ a,
226
+ ul li,
227
+ ol li,
228
+ ul li a,
229
+ ol li a {
230
+ color: $color-cyberspace;
231
+ }
232
+
233
+ ul li a,
234
+ ol li a {
235
+ &:hover,
236
+ &:focus {
237
+ color: $color-cyberspace;
238
+ }
239
+ }
240
+ }
241
+
215
242
  a[data-scroll-ignore] {
216
243
  pointer-events: none;
217
244