@internetstiftelsen/styleguide 2.21.28 → 2.21.31-beta.0.1
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/dist/.DS_Store +0 -0
- package/package.json +1 -1
- package/src/.DS_Store +0 -0
- package/src/assets/.DS_Store +0 -0
- package/src/atoms/.DS_Store +0 -0
- package/src/atoms/button/_button.scss +38 -0
- package/src/atoms/button/button.config.js +14 -0
- package/src/atoms/icon/.DS_Store +0 -0
- package/src/molecules/.DS_Store +0 -0
package/dist/.DS_Store
ADDED
|
Binary file
|
package/package.json
CHANGED
package/src/.DS_Store
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -246,6 +246,25 @@
|
|
|
246
246
|
}
|
|
247
247
|
}
|
|
248
248
|
|
|
249
|
+
@include m(sandstone) {
|
|
250
|
+
color: $color-sandstone;
|
|
251
|
+
|
|
252
|
+
&:hover,
|
|
253
|
+
&:focus {
|
|
254
|
+
color: darken($color-sandstone, 12%);
|
|
255
|
+
text-shadow: none;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
@include e(text) {
|
|
259
|
+
color: $color-snow;
|
|
260
|
+
text-shadow: 0 0 rhythm(2) $color-sandstone-dark;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
@include e(icon) {
|
|
264
|
+
fill: $color-cyberspace;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
|
|
249
268
|
@include m(ruby) {
|
|
250
269
|
color: $color-ruby;
|
|
251
270
|
|
|
@@ -299,6 +318,25 @@
|
|
|
299
318
|
}
|
|
300
319
|
}
|
|
301
320
|
|
|
321
|
+
@include m(jade) {
|
|
322
|
+
color: $color-jade;
|
|
323
|
+
|
|
324
|
+
&:hover,
|
|
325
|
+
&:focus {
|
|
326
|
+
color: darken($color-jade, 10%);
|
|
327
|
+
text-shadow: none;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
@include e(text) {
|
|
331
|
+
color: $color-snow;
|
|
332
|
+
text-shadow: 0 0 rhythm(2) $color-jade-dark;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
@include e(icon) {
|
|
336
|
+
fill: $color-cyberspace;
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
|
|
302
340
|
@include m(jade-light) {
|
|
303
341
|
box-shadow: 0 0 0 1px inset $color-jade;
|
|
304
342
|
color: $color-jade-light;
|
|
@@ -33,6 +33,13 @@ module.exports = {
|
|
|
33
33
|
text: 'Ruby dark secondary button'
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
|
+
{
|
|
37
|
+
name: 'Jade',
|
|
38
|
+
context: {
|
|
39
|
+
modifiers: ['jade'],
|
|
40
|
+
text: 'Jade button'
|
|
41
|
+
}
|
|
42
|
+
},
|
|
36
43
|
{
|
|
37
44
|
name: 'Jade light',
|
|
38
45
|
context: {
|
|
@@ -82,6 +89,13 @@ module.exports = {
|
|
|
82
89
|
text: 'Cyberspace button'
|
|
83
90
|
}
|
|
84
91
|
},
|
|
92
|
+
{
|
|
93
|
+
name: 'Sandstone',
|
|
94
|
+
context: {
|
|
95
|
+
modifiers: ['sandstone'],
|
|
96
|
+
text: 'Sandstone button'
|
|
97
|
+
}
|
|
98
|
+
},
|
|
85
99
|
{
|
|
86
100
|
name: 'Transparent',
|
|
87
101
|
context: {
|
|
Binary file
|
|
Binary file
|