Skip to content

Commit 8e9bd2c

Browse files
committed
12.0.0
1 parent de969d7 commit 8e9bd2c

3 files changed

Lines changed: 11 additions & 20 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Changes to @csstools/normalize.css
22

3-
### HEAD
3+
### 12.0.0 (September 15, 2021)
44

5-
- Changed: Evergreen variations of normalize.css contribute no specificity.
6-
- Removed: `fieldset` padding in Firefox is no longer needed.
7-
- Removed: `text-size-adjust` is no longer needed.
5+
- Changed: normalize.css no longer contributes specificity.
6+
- Changed: normalize.css fixes now respect `writing-mode`.
7+
- Removed: Fixes for older browsers, and all fixes for IE.
8+
- Fixed: `table` uses correct `border-color: currentColor` normalization.
89

910
### 11.0.1 (August 20, 2020)
1011

README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,6 @@ cross-browser default styling of HTML elements.
99
<link href="https://unpkg.com/@csstools/normalize.css" rel="stylesheet" />
1010
```
1111

12-
Or to exclusively support evergreen browsers.
13-
14-
```html
15-
<link href="https://unpkg.com/@csstools/normalize.css/evergreen.css" rel="stylesheet" />
16-
```
17-
1812
## Install
1913

2014
```sh
@@ -67,9 +61,8 @@ See https://csstools.github.io/normalize.css/latest/normalize.css
6761
* Firefox (last 3)
6862
* Firefox ESR
6963
* Opera (last 3)
70-
* Safari (last 3)
64+
* Safari (last 2)
7165
* iOS Safari (last 2)
72-
* Internet Explorer 9+
7366

7467
## Contributing
7568

package.json

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@csstools/normalize.css",
3-
"version": "11.0.1",
3+
"version": "12.0.0",
44
"description": "A cross-browser CSS foundation",
55
"author": "Jonathan Neal <[email protected]>",
66
"contributors": [
@@ -16,17 +16,14 @@
1616
"style": "normalize.css",
1717
"files": [
1818
"normalize.css",
19-
"evergreen.css",
20-
"opinionated.css",
21-
"opinionated.evergreen.css"
19+
"opinionated.css"
2220
],
2321
"scripts": {
24-
"prepublishOnly": "npm test",
25-
"test": "stylelint normalize.css evergreen.css opinionated.css opinionated.evergreen.css"
22+
"test": "echo \"no test\""
2623
},
2724
"devDependencies": {
28-
"stylelint": "^13.8.0",
29-
"stylelint-config-standard": "^20.0.0"
25+
"stylelint": "^13.13.1",
26+
"stylelint-config-standard": "^22.0.0"
3027
},
3128
"stylelint": {
3229
"extends": "stylelint-config-standard",

0 commit comments

Comments
 (0)