@digdir/designsystemet-css 0.8.0 → 0.9.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/alert.css +3 -3
- package/box.css +12 -12
- package/checkbox.css +3 -3
- package/chip.css +11 -11
- package/combobox.css +18 -19
- package/dist/alert.css +1 -1
- package/dist/box.css +1 -1
- package/dist/checkbox.css +1 -1
- package/dist/chip.css +1 -1
- package/dist/combobox.css +1 -1
- package/dist/dropdownmenu.css +1 -1
- package/dist/error-message.css +1 -1
- package/dist/heading.css +1 -1
- package/dist/helptext.css +1 -1
- package/dist/index.css +1 -1
- package/dist/ingress.css +1 -1
- package/dist/label.css +1 -1
- package/dist/list.css +1 -1
- package/dist/native-select.css +1 -1
- package/dist/pagination.css +1 -1
- package/dist/paragraph.css +1 -1
- package/dist/popover.css +1 -1
- package/dist/radio.css +1 -1
- package/dist/search.css +1 -1
- package/dist/switch.css +1 -1
- package/dist/table.css +1 -1
- package/dist/tabs.css +1 -1
- package/dist/tag.css +1 -1
- package/dist/textarea.css +1 -1
- package/dist/textfield.css +1 -1
- package/dropdownmenu.css +3 -3
- package/error-message.css +4 -4
- package/heading.css +8 -8
- package/helptext.css +3 -3
- package/index.css +1 -1
- package/ingress.css +4 -4
- package/label.css +4 -4
- package/list.css +3 -3
- package/native-select.css +3 -3
- package/package.json +2 -2
- package/pagination.css +6 -6
- package/paragraph.css +12 -12
- package/popover.css +3 -3
- package/radio.css +4 -4
- package/search.css +9 -9
- package/switch.css +12 -12
- package/table.css +3 -3
- package/tabs.css +14 -14
- package/tag.css +3 -3
- package/textarea.css +3 -3
- package/textfield.css +9 -9
package/tag.css
CHANGED
|
@@ -15,17 +15,17 @@
|
|
|
15
15
|
width: max-content;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
.fds-tag--
|
|
18
|
+
.fds-tag--sm {
|
|
19
19
|
padding: 0 var(--fds-spacing-2);
|
|
20
20
|
min-height: var(--fds-sizing-7);
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
.fds-tag--
|
|
23
|
+
.fds-tag--md {
|
|
24
24
|
padding: 0 var(--fds-spacing-2);
|
|
25
25
|
min-height: var(--fds-sizing-8);
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
.fds-tag--
|
|
28
|
+
.fds-tag--lg {
|
|
29
29
|
padding: 0 var(--fds-spacing-3);
|
|
30
30
|
min-height: var(--fds-sizing-9);
|
|
31
31
|
}
|
package/textarea.css
CHANGED
|
@@ -41,15 +41,15 @@
|
|
|
41
41
|
resize: vertical;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
.fds-textarea--
|
|
44
|
+
.fds-textarea--sm .fds-textarea__input {
|
|
45
45
|
padding: var(--fds-spacing-2);
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
-
.fds-textarea--
|
|
48
|
+
.fds-textarea--md .fds-textarea__input {
|
|
49
49
|
padding: var(--fds-spacing-3);
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
-
.fds-textarea--
|
|
52
|
+
.fds-textarea--lg .fds-textarea__input {
|
|
53
53
|
padding: var(--fds-spacing-4);
|
|
54
54
|
}
|
|
55
55
|
|
package/textfield.css
CHANGED
|
@@ -52,39 +52,39 @@
|
|
|
52
52
|
border-bottom-right-radius: var(--fds-border_radius-medium);
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
-
.fds-textfield--
|
|
55
|
+
.fds-textfield--sm .fds-textfield__adornment {
|
|
56
56
|
padding: var(--fds-sizing-2) var(--fds-spacing-3);
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
-
.fds-textfield--
|
|
59
|
+
.fds-textfield--md .fds-textfield__adornment {
|
|
60
60
|
padding: 0.65rem var(--fds-spacing-4);
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
-
.fds-textfield--
|
|
63
|
+
.fds-textfield--lg .fds-textfield__adornment {
|
|
64
64
|
padding: 0.85rem var(--fds-spacing-5);
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
.fds-textfield--
|
|
67
|
+
.fds-textfield--sm .fds-textfield__field {
|
|
68
68
|
height: var(--fds-sizing-10);
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
-
.fds-textfield--
|
|
71
|
+
.fds-textfield--md .fds-textfield__field {
|
|
72
72
|
height: var(--fds-sizing-12);
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
.fds-textfield--
|
|
75
|
+
.fds-textfield--lg .fds-textfield__field {
|
|
76
76
|
height: var(--fds-sizing-14);
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
-
.fds-textfield--
|
|
79
|
+
.fds-textfield--sm .fds-textfield__input {
|
|
80
80
|
padding: 0 var(--fds-spacing-2);
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
.fds-textfield--
|
|
83
|
+
.fds-textfield--md .fds-textfield__input {
|
|
84
84
|
padding: 0 var(--fds-spacing-3);
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
.fds-textfield--
|
|
87
|
+
.fds-textfield--lg .fds-textfield__input {
|
|
88
88
|
padding: 0 var(--fds-spacing-4);
|
|
89
89
|
}
|
|
90
90
|
|