@internetstiftelsen/styleguide 3.0.13 → 3.0.14
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
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
@include e(item) {
|
|
48
48
|
display: flex;
|
|
49
49
|
flex: 0 0 auto;
|
|
50
50
|
padding: 0;
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
|
|
57
|
+
@include e(link) {
|
|
58
58
|
@extend %normalize-links;
|
|
59
59
|
|
|
60
60
|
display: inline-flex;
|
|
@@ -104,3 +104,33 @@
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
|
+
|
|
108
|
+
.no-js {
|
|
109
|
+
@include organism(tab-list) {
|
|
110
|
+
padding: initial;
|
|
111
|
+
margin: initial;
|
|
112
|
+
list-style-type: disc;
|
|
113
|
+
|
|
114
|
+
@include plumber(
|
|
115
|
+
$leading-bottom: 3
|
|
116
|
+
);
|
|
117
|
+
|
|
118
|
+
@include e(item) {
|
|
119
|
+
display: list-item;
|
|
120
|
+
margin-top: rhythm(1);
|
|
121
|
+
margin-left: rhythm(4);
|
|
122
|
+
padding-top: rhythm(0.25);
|
|
123
|
+
padding-bottom: rhythm(0.25);
|
|
124
|
+
padding-top: 0;
|
|
125
|
+
padding-left: 0;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
@include e(link) {
|
|
129
|
+
background-color: transparent;
|
|
130
|
+
padding: 0;
|
|
131
|
+
border-radius: 0;
|
|
132
|
+
|
|
133
|
+
@extend %link-styles;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
@@ -22,6 +22,14 @@ $color-tab-highlight: $color-ruby !default;
|
|
|
22
22
|
box-shadow: 0 0 0 2px inset $color-tab-highlight !important;
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
|
+
|
|
26
|
+
&::-webkit-slider-thumb {
|
|
27
|
+
box-shadow: 0 0 0 inset rgba($color-cyberspace, 0.2), 0 1px 2px rgba($color-cyberspace, 0.2), 0 0 0 3px inset $color-tab-highlight !important;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&::-moz-range-thumb {
|
|
31
|
+
box-shadow: 0 0 0 inset rgba($color-cyberspace, 0.2), 0 1px 2px rgba($color-cyberspace, 0.2), 0 0 0 3px inset $color-tab-highlight !important;
|
|
32
|
+
}
|
|
25
33
|
}
|
|
26
34
|
|
|
27
35
|
// Use when element is on dark background
|