Skip to content

Commit

Permalink
11.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathantneal committed Aug 20, 2020
1 parent dcf6136 commit 41fbcb3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
8 changes: 4 additions & 4 deletions evergreen.css
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ button {
*/

button,
[type="button"],
[type="reset"],
[type="submit"] {
[type="button" i],
[type="reset" i],
[type="submit" i] {
-webkit-appearance: button;
}

Expand Down Expand Up @@ -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 */
}
Expand Down
8 changes: 4 additions & 4 deletions opinionated.evergreen.css
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,9 @@ button {
*/

button,
[type="button"],
[type="reset"],
[type="submit"] {
[type="button" i],
[type="reset" i],
[type="submit" i] {
-webkit-appearance: button;
}

Expand Down Expand Up @@ -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 */
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"contributors": [
Expand Down

0 comments on commit 41fbcb3

Please sign in to comment.