@navikt/ds-css 6.10.1 → 6.12.0
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 +21 -1
- package/alert.css +5 -1
- package/button.css +2 -5
- package/copybutton.css +6 -4
- package/dist/component/alert.css +5 -1
- package/dist/component/alert.min.css +1 -1
- package/dist/component/button.css +2 -5
- package/dist/component/button.min.css +1 -1
- package/dist/component/copybutton.css +6 -4
- package/dist/component/copybutton.min.css +1 -1
- package/dist/component/index.css +795 -71
- package/dist/component/index.min.css +4 -4
- package/dist/component/list.css +7 -15
- package/dist/component/list.min.css +1 -1
- package/dist/component/pagination.css +4 -0
- package/dist/component/pagination.min.css +1 -1
- package/dist/component/primitives.css +805 -49
- package/dist/component/primitives.min.css +1 -1
- package/dist/components.css +829 -74
- package/dist/components.min.css +3 -3
- package/dist/global/tokens.css +2 -1
- package/dist/global/tokens.min.css +1 -1
- package/dist/index.css +795 -71
- package/dist/index.min.css +4 -4
- package/list.css +7 -15
- package/package.json +2 -2
- package/pagination.css +4 -0
- package/primitives/base.css +777 -0
- package/primitives/box.css +27 -49
- package/primitives/index.css +1 -0
package/list.css
CHANGED
|
@@ -15,15 +15,7 @@
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.navds-list li {
|
|
18
|
-
margin-block-end: var(--a-spacing-
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.navds-list--small li {
|
|
22
|
-
margin-block-end: var(--a-spacing-3);
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.navds-list--nested li {
|
|
26
|
-
margin-block-end: var(--a-spacing-3);
|
|
18
|
+
margin-block-end: var(--a-spacing-2);
|
|
27
19
|
}
|
|
28
20
|
|
|
29
21
|
.navds-list:last-child > ul > li:last-child,
|
|
@@ -50,25 +42,25 @@
|
|
|
50
42
|
.navds-list .navds-list__item-marker--bullet {
|
|
51
43
|
display: flex;
|
|
52
44
|
align-items: center;
|
|
53
|
-
height: var(--a-font-line-height-
|
|
45
|
+
height: var(--a-font-line-height-xlarge);
|
|
54
46
|
grid-column: 1 / 2;
|
|
55
47
|
color: var(--ac-list-marker-ul-color, var(--ac-list-marker-color, var(--a-icon-default)));
|
|
56
48
|
}
|
|
57
49
|
|
|
58
50
|
.navds-list--small .navds-list__item-marker--bullet {
|
|
59
|
-
height: var(--a-font-line-height-
|
|
51
|
+
height: var(--a-font-line-height-large);
|
|
60
52
|
}
|
|
61
53
|
|
|
62
54
|
.navds-list__item-marker--icon {
|
|
63
55
|
color: var(--ac-list-marker-icon-color, var(--ac-list-marker-color, var(--a-icon-default)));
|
|
64
56
|
display: flex;
|
|
65
57
|
align-items: center;
|
|
66
|
-
height: var(--a-font-line-height-
|
|
58
|
+
height: var(--a-font-line-height-xlarge);
|
|
67
59
|
padding-block-end: 1px;
|
|
68
60
|
}
|
|
69
61
|
|
|
70
62
|
.navds-list--small .navds-list__item-marker--icon {
|
|
71
|
-
height: var(--a-font-line-height-
|
|
63
|
+
height: var(--a-font-line-height-large);
|
|
72
64
|
}
|
|
73
65
|
|
|
74
66
|
.navds-list__item-marker--icon svg {
|
|
@@ -93,10 +85,10 @@
|
|
|
93
85
|
font-weight: var(--a-font-weight-bold);
|
|
94
86
|
font-size: var(--a-font-size-large);
|
|
95
87
|
color: var(--ac-list-marker-ol-color, var(--ac-list-marker-color, var(--a-icon-default)));
|
|
96
|
-
line-height: var(--a-font-line-height-
|
|
88
|
+
line-height: var(--a-font-line-height-xlarge);
|
|
97
89
|
}
|
|
98
90
|
|
|
99
91
|
.navds-list--small ol li::marker {
|
|
100
92
|
font-size: var(--a-font-size-small);
|
|
101
|
-
line-height: var(--a-font-line-height-
|
|
93
|
+
line-height: var(--a-font-line-height-large);
|
|
102
94
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@navikt/ds-css",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.12.0",
|
|
4
4
|
"description": "CSS for NAV Designsystem",
|
|
5
5
|
"author": "Aksel | NAV designsystem team",
|
|
6
6
|
"keywords": [
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"css:get-version": "node config/get-version.js"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@navikt/ds-tokens": "^6.
|
|
30
|
+
"@navikt/ds-tokens": "^6.12.0",
|
|
31
31
|
"cssnano": "6.0.0",
|
|
32
32
|
"fast-glob": "3.2.11",
|
|
33
33
|
"lodash": "4.17.21",
|