Skip to content

Commit

Permalink
12.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathantneal committed Aug 20, 2020
1 parent 3aeafd1 commit e7ef7dc
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 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 sanitize.css

### 12.0.1 (August 20, 2020)

- Fixed: Used case-insensitive attribute selectors in the evergreen variations.

### 12.0.0 (August 20, 2020)

- Added: Correct table border color inheritance in all Chrome, Edge, and Safari.
Expand Down
16 changes: 8 additions & 8 deletions evergreen.css
Original file line number Diff line number Diff line change
Expand Up @@ -240,9 +240,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 @@ -287,7 +287,7 @@ textarea {
* 2. Correct the outline style in Safari.
*/

[type="search"] {
[type="search" i] {
-webkit-appearance: textfield; /* 1 */
outline-offset: -2px; /* 2 */
}
Expand Down Expand Up @@ -396,7 +396,7 @@ summary {
* Change the cursor on busy elements in all browsers (opinionated).
*/

[aria-busy="true"] {
[aria-busy="true" i] {
cursor: progress;
}

Expand All @@ -413,7 +413,7 @@ summary {
* inoperable elements in all browsers (opinionated).
*/

[aria-disabled="true"],
[aria-disabled="true" i],
[disabled] {
cursor: not-allowed;
}
Expand All @@ -423,11 +423,11 @@ summary {
* in all browsers (opinionated).
*/

[aria-hidden="false"][hidden] {
[aria-hidden="false" i][hidden] {
display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
[aria-hidden="false" i][hidden]:not(:focus) {
clip: rect(0, 0, 0, 0);
position: absolute;
}
4 changes: 2 additions & 2 deletions forms.evergreen.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ select:not([multiple]):not([size]) {
* Remove the border and padding in all browsers (opinionated).
*/

[type="color"],
[type="range"] {
[type="color" i],
[type="range" i] {
border-width: 0;
padding: 0;
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sanitize.css",
"version": "12.0.0",
"version": "12.0.1",
"description": "A best-practices CSS foundation",
"author": "Jonathan Neal <[email protected]>",
"contributors": [
Expand Down

0 comments on commit e7ef7dc

Please sign in to comment.