@navikt/ds-css 0.12.0 → 0.12.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/button.css +4 -2
- package/dist/index.css +6 -4
- package/package.json +2 -2
package/button.css
CHANGED
|
@@ -137,7 +137,8 @@
|
|
|
137
137
|
var(--navds-shadow-focus);
|
|
138
138
|
}
|
|
139
139
|
|
|
140
|
-
.navds-button--primary:hover:disabled
|
|
140
|
+
.navds-button--primary:hover:disabled,
|
|
141
|
+
.navds-button--primary:active:disabled {
|
|
141
142
|
background-color: var(--navds-button-color-primary-background);
|
|
142
143
|
}
|
|
143
144
|
|
|
@@ -244,7 +245,8 @@
|
|
|
244
245
|
var(--navds-shadow-focus);
|
|
245
246
|
}
|
|
246
247
|
|
|
247
|
-
.navds-button--danger:hover:disabled
|
|
248
|
+
.navds-button--danger:hover:disabled,
|
|
249
|
+
.navds-button--danger:active:disabled {
|
|
248
250
|
background-color: var(--navds-button-color-danger-background);
|
|
249
251
|
}
|
|
250
252
|
|