Skip to content

Commit

Permalink
12.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathantneal committed Sep 15, 2021
1 parent de969d7 commit 8e9bd2c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 20 deletions.
9 changes: 5 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Changes to @csstools/normalize.css

### HEAD
### 12.0.0 (September 15, 2021)

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

### 11.0.1 (August 20, 2020)

Expand Down
9 changes: 1 addition & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ cross-browser default styling of HTML elements.
<link href="https://unpkg.com/@csstools/normalize.css" rel="stylesheet" />
```

Or to exclusively support evergreen browsers.

```html
<link href="https://unpkg.com/@csstools/normalize.css/evergreen.css" rel="stylesheet" />
```

## Install

```sh
Expand Down Expand Up @@ -67,9 +61,8 @@ See https://csstools.github.io/normalize.css/latest/normalize.css
* Firefox (last 3)
* Firefox ESR
* Opera (last 3)
* Safari (last 3)
* Safari (last 2)
* iOS Safari (last 2)
* Internet Explorer 9+

## Contributing

Expand Down
13 changes: 5 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@csstools/normalize.css",
"version": "11.0.1",
"version": "12.0.0",
"description": "A cross-browser CSS foundation",
"author": "Jonathan Neal <[email protected]>",
"contributors": [
Expand All @@ -16,17 +16,14 @@
"style": "normalize.css",
"files": [
"normalize.css",
"evergreen.css",
"opinionated.css",
"opinionated.evergreen.css"
"opinionated.css"
],
"scripts": {
"prepublishOnly": "npm test",
"test": "stylelint normalize.css evergreen.css opinionated.css opinionated.evergreen.css"
"test": "echo \"no test\""
},
"devDependencies": {
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0"
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0"
},
"stylelint": {
"extends": "stylelint-config-standard",
Expand Down

0 comments on commit 8e9bd2c

Please sign in to comment.