@navikt/ds-css 2.8.5 → 2.8.7

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @navikt/ds-css
2
2
 
3
+ ## 2.8.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [`7f3f025db`](https://github.com/navikt/aksel/commit/7f3f025db2ad605df4240605a733d10d08db753a) Thanks [@KenAJoh](https://github.com/KenAJoh)! - Fikset typografi for radio, checkbox. Button token for tertiary
8
+
9
+ ## 2.8.6
10
+
11
+ ### Patch Changes
12
+
13
+ - [`2eb358ad8`](https://github.com/navikt/aksel/commit/2eb358ad888979d21c385b3900973946f3f466be) Thanks [@KenAJoh](https://github.com/KenAJoh)! - Alert, Chips og ErrorSummary har nå bedre utvalg av tokens
14
+
3
15
  ## 2.8.5
4
16
 
5
17
  ### Patch Changes
package/alert.css CHANGED
@@ -37,6 +37,10 @@
37
37
  background-color: var(--ac-alert-error-bg, var(--a-surface-danger-subtle));
38
38
  }
39
39
 
40
+ .navds-alert--error > .navds-alert__icon {
41
+ color: var(--ac-alert-icon-error-color, var(--a-icon-danger));
42
+ }
43
+
40
44
  .navds-alert--warning {
41
45
  border-color: var(--ac-alert-warning-border, var(--a-border-warning));
42
46
  background-color: var(--ac-alert-warning-bg, var(--a-surface-warning-subtle));
@@ -44,6 +48,7 @@
44
48
 
45
49
  .navds-alert--warning > .navds-alert__icon {
46
50
  background: radial-gradient(circle at 50% 57%, var(--a-surface-default) 32%, 0, transparent);
51
+ color: var(--ac-alert-icon-warning-color, var(--a-icon-warning));
47
52
  }
48
53
 
49
54
  .navds-alert--info {
@@ -51,11 +56,19 @@
51
56
  background-color: var(--ac-alert-info-bg, var(--a-surface-info-subtle));
52
57
  }
53
58
 
59
+ .navds-alert--info > .navds-alert__icon {
60
+ color: var(--ac-alert-icon-info-color, var(--a-icon-info));
61
+ }
62
+
54
63
  .navds-alert--success {
55
64
  border-color: var(--ac-alert-success-border, var(--a-border-success));
56
65
  background-color: var(--ac-alert-success-bg, var(--a-surface-success-subtle));
57
66
  }
58
67
 
68
+ .navds-alert--success > .navds-alert__icon {
69
+ color: var(--ac-alert-icon-success-color, var(--a-icon-success));
70
+ }
71
+
59
72
  .navds-alert--inline {
60
73
  background-color: transparent;
61
74
  border: none;
package/button.css CHANGED
@@ -217,6 +217,7 @@
217
217
 
218
218
  .navds-button--tertiary {
219
219
  color: var(--ac-button-tertiary-text, var(--a-text-action));
220
+ background-color: var(--ac-button-tertiary-bg, var(--a-surface-transparent));
220
221
  }
221
222
 
222
223
  .navds-button--tertiary:hover {
package/chips.css CHANGED
@@ -36,6 +36,7 @@
36
36
  .navds-chips__toggle {
37
37
  box-shadow: inset 0 0 0 1px var(--ac-chip-toggle-border, var(--a-border-default));
38
38
  background-color: var(--ac-chip-toggle-bg, var(--a-surface-neutral-subtle));
39
+ color: var(--ac-chip-toggle-text, var(--a-text-default));
39
40
  }
40
41
 
41
42
  .navds-chips__toggle:hover {