diff options
author | Jonathan Neal <jonathantneal@hotmail.com> | 2021-09-15 08:28:52 -0400 |
---|---|---|
committer | Jonathan Neal <jonathantneal@hotmail.com> | 2021-09-15 08:31:53 -0400 |
commit | 8e9bd2c73d7e6074bf93dbcba37188cb8e2f14a2 (patch) | |
tree | dbb848773aa5d365dd03fb44d93a355dc9254e48 | |
parent | de969d7c48f66306170636e2cf67f148753bf41b (diff) | |
download | normalize.css-8e9bd2c73d7e6074bf93dbcba37188cb8e2f14a2.tar.gz normalize.css-8e9bd2c73d7e6074bf93dbcba37188cb8e2f14a2.zip |
12.0.012.0.0
-rw-r--r-- | CHANGELOG.md | 9 | ||||
-rw-r--r-- | README.md | 9 | ||||
-rw-r--r-- | package.json | 13 |
3 files changed, 11 insertions, 20 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index fbc5977..4dfd58a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) @@ -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 @@ -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 diff --git a/package.json b/package.json index 45f19e6..63628c9 100644 --- a/package.json +++ b/package.json @@ -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 <jonathantneal@hotmail.com>", "contributors": [ @@ -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", |