@navikt/ds-css 4.10.0 → 4.10.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/CHANGELOG.md +6 -0
- package/dist/component/index.css +5 -2
- package/dist/component/index.min.css +1 -1
- package/dist/component/link.css +4 -1
- package/dist/component/link.min.css +1 -1
- package/dist/components.css +4 -1
- package/dist/components.min.css +1 -1
- package/dist/global/tokens.css +1 -1
- package/dist/index.css +5 -2
- package/dist/index.min.css +1 -1
- package/link.css +4 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @navikt/ds-css
|
|
2
2
|
|
|
3
|
+
## 4.10.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Link: Fikset visited farger og inline SVG-reset ved bruk av tailwind ([`d3bd1202e`](https://github.com/navikt/aksel/commit/d3bd1202eddb23dd3f1f09c3e4086ff3b19737d6))
|
|
8
|
+
|
|
3
9
|
## 4.10.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/dist/component/index.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
3
|
* Do not edit directly
|
|
4
|
-
* Generated on Wed, 09 Aug 2023
|
|
4
|
+
* Generated on Wed, 09 Aug 2023 14:33:32 GMT
|
|
5
5
|
*/
|
|
6
6
|
:root, :host {
|
|
7
7
|
--a-spacing-05: 0.125rem;
|
|
@@ -3709,11 +3709,14 @@ button.navds-internalheader__title:active,
|
|
|
3709
3709
|
display: inline;
|
|
3710
3710
|
}
|
|
3711
3711
|
.navds-link.navds-link--inline-text > svg {
|
|
3712
|
+
/* stylelint-disable-next-line plugin/declaration-block-no-ignored-properties */
|
|
3712
3713
|
margin: 0.1em 0.1em -0.1em;
|
|
3713
3714
|
transform: translateY(0.05em);
|
|
3715
|
+
display: inline;
|
|
3714
3716
|
}
|
|
3715
3717
|
.navds-link:visited {
|
|
3716
|
-
|
|
3718
|
+
/* stylelint-disable-next-line csstools/value-no-unknown-custom-properties */
|
|
3719
|
+
color: var(--ac-link-visited-text);
|
|
3717
3720
|
}
|
|
3718
3721
|
.navds-link:hover {
|
|
3719
3722
|
text-decoration: none;
|