aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJonathan Neal <jonathantneal@hotmail.com>2020-08-20 04:15:52 -0400
committerJonathan Neal <jonathantneal@hotmail.com>2020-08-20 04:15:52 -0400
commit41fbcb343a04d3e6e2ab8487462b5a21917a4375 (patch)
treef3aa4e18c6aff0b4fa2e8c3d4517e6b6f5030258
parentdcf6136221ed221746ce7189531443206fa43619 (diff)
downloadnormalize.css-41fbcb343a04d3e6e2ab8487462b5a21917a4375.tar.gz
normalize.css-41fbcb343a04d3e6e2ab8487462b5a21917a4375.zip
11.0.111.0.1
-rw-r--r--CHANGELOG.md4
-rw-r--r--evergreen.css8
-rw-r--r--opinionated.evergreen.css8
-rw-r--r--package.json2
4 files changed, 13 insertions, 9 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 61f3b36..ef495cd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changes to @csstools/normalize.css
+### 11.0.1 (August 20, 2020)
+
+- Fixed: Used case-insensitive attribute selectors in the evergreen variations.
+
### 11.0.0 (August 20, 2020)
- Added: Correct table border color inheritance in all Chrome, Edge, and Safari.
diff --git a/evergreen.css b/evergreen.css
index 41ab9a8..ac567a8 100644
--- a/evergreen.css
+++ b/evergreen.css
@@ -152,9 +152,9 @@ button {
*/
button,
-[type="button"],
-[type="reset"],
-[type="submit"] {
+[type="button" i],
+[type="reset" i],
+[type="submit" i] {
-webkit-appearance: button;
}
@@ -195,7 +195,7 @@ textarea {
* 2. Correct the outline style in Safari.
*/
-[type="search"] {
+[type="search" i] {
-webkit-appearance: textfield; /* 1 */
outline-offset: -2px; /* 2 */
}
diff --git a/opinionated.evergreen.css b/opinionated.evergreen.css
index 328dc52..4d075a4 100644
--- a/opinionated.evergreen.css
+++ b/opinionated.evergreen.css
@@ -160,9 +160,9 @@ button {
*/
button,
-[type="button"],
-[type="reset"],
-[type="submit"] {
+[type="button" i],
+[type="reset" i],
+[type="submit" i] {
-webkit-appearance: button;
}
@@ -203,7 +203,7 @@ textarea {
* 2. Correct the outline style in Safari.
*/
-[type="search"] {
+[type="search" i] {
-webkit-appearance: textfield; /* 1 */
outline-offset: -2px; /* 2 */
}
diff --git a/package.json b/package.json
index 3648fac..cf12a21 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@csstools/normalize.css",
- "version": "11.0.0",
+ "version": "11.0.1",
"description": "A cross-browser CSS foundation",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"contributors": [