@navikt/ds-css 0.16.8 → 0.16.11
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/button.css +5 -7
- package/dist/index.css +185 -9
- package/index.css +2 -0
- package/package.json +2 -2
- package/stepper.css +99 -0
- package/tabs.css +109 -0
package/button.css
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
--navds-semantic-color-interaction-primary
|
|
20
20
|
);
|
|
21
21
|
--navds-button-color-secondary-text-hover: var(
|
|
22
|
-
--navds-semantic-color-
|
|
22
|
+
--navds-semantic-color-interaction-primary
|
|
23
23
|
);
|
|
24
24
|
--navds-button-color-secondary-text-active: var(
|
|
25
25
|
--navds-semantic-color-text-inverted
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
--navds-semantic-color-component-background-light
|
|
35
35
|
);
|
|
36
36
|
--navds-button-color-secondary-background-hover: var(
|
|
37
|
-
--navds-semantic-color-interaction-primary-hover
|
|
37
|
+
--navds-semantic-color-interaction-primary-hover-subtle
|
|
38
38
|
);
|
|
39
39
|
--navds-button-color-secondary-background-active: var(
|
|
40
40
|
--navds-semantic-color-interaction-primary-selected
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
--navds-button-color-tertiary-text-active: var(
|
|
48
48
|
--navds-semantic-color-text-inverted
|
|
49
49
|
);
|
|
50
|
-
--navds-button-color-tertiary-
|
|
51
|
-
--navds-semantic-color-interaction-primary
|
|
50
|
+
--navds-button-color-tertiary-background-hover: var(
|
|
51
|
+
--navds-semantic-color-interaction-primary-hover-subtle
|
|
52
52
|
);
|
|
53
53
|
--navds-button-color-tertiary-border-focus: var(
|
|
54
54
|
--navds-semantic-color-interaction-primary
|
|
@@ -165,7 +165,6 @@
|
|
|
165
165
|
.navds-button--secondary:hover {
|
|
166
166
|
color: var(--navds-button-color-secondary-text-hover);
|
|
167
167
|
background-color: var(--navds-button-color-secondary-background-hover);
|
|
168
|
-
box-shadow: none;
|
|
169
168
|
}
|
|
170
169
|
|
|
171
170
|
.navds-button--secondary:focus {
|
|
@@ -179,7 +178,6 @@
|
|
|
179
178
|
box-shadow: none;
|
|
180
179
|
}
|
|
181
180
|
|
|
182
|
-
.navds-button--secondary:focus:hover,
|
|
183
181
|
.navds-button--secondary:focus:active {
|
|
184
182
|
box-shadow: inset 0 0 0 1px
|
|
185
183
|
var(--navds-button-color-secondary-border-focus-active-hover),
|
|
@@ -202,7 +200,7 @@
|
|
|
202
200
|
}
|
|
203
201
|
|
|
204
202
|
.navds-button--tertiary:hover {
|
|
205
|
-
|
|
203
|
+
background-color: var(--navds-button-color-tertiary-background-hover);
|
|
206
204
|
}
|
|
207
205
|
|
|
208
206
|
.navds-button--tertiary:focus {
|