@navikt/ds-css 1.3.16 → 1.3.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@navikt/ds-css",
3
- "version": "1.3.16",
3
+ "version": "1.3.18",
4
4
  "description": "Css for NAV Designsystem components",
5
5
  "author": "NAV Designsystem team",
6
6
  "keywords": [
@@ -20,12 +20,12 @@
20
20
  "watch": "postcss --watch --use postcss-import -o dist/index.css index.css"
21
21
  },
22
22
  "devDependencies": {
23
- "@navikt/ds-tokens": "^1.3.16",
23
+ "@navikt/ds-tokens": "^1.3.18",
24
24
  "normalize.css": "^8.0.1",
25
25
  "postcss": "^8.3.6",
26
26
  "postcss-cli": "^8.3.1",
27
27
  "postcss-combine-duplicated-selectors": "10.0.3",
28
28
  "postcss-import": "^14.0.2"
29
29
  },
30
- "gitHead": "933119ea5614e77794f7cc8ff636e2f2131515aa"
30
+ "gitHead": "b224ef6810966588555070d39f2a1999aabd4aed"
31
31
  }
package/table.css CHANGED
@@ -88,16 +88,14 @@
88
88
  text-align: center;
89
89
  }
90
90
 
91
- where(.navds-table__body
92
- .navds-table__row--shade-on-hover:hover)
91
+ :where(.navds-table__body .navds-table__row--shade-on-hover:hover)
93
92
  .navds-table__header-cell,
94
- where(.navds-table__body
95
- .navds-table__row--shade-on-hover:hover)
93
+ :where(.navds-table__body .navds-table__row--shade-on-hover:hover)
96
94
  .navds-table__data-cell {
97
95
  border-color: var(--navds-table-cell-color-border-hover);
98
96
  }
99
97
 
100
- where(.navds-table__expandable-row--open:hover) .navds-table__data-cell {
98
+ :where(.navds-table__expandable-row--open:hover) .navds-table__data-cell {
101
99
  border-bottom-color: transparent;
102
100
  }
103
101