Skip to content

Commit

Permalink
8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathantneal committed Oct 8, 2018
1 parent 849e4ad commit 8a35f11
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changes to sanitize.css

### 8.0.0 (October 8, 2018)

- Changed: Apply `aria-disabled` disabled styles when `[aria-disabled="true"]`
- Changed: Apply `svg { fill: currentColor }` when `svg:not([fill])`
- Fixed: Apply appropriate system font fallbacks for KDE Plasma

### 7.0.3 (September 4, 2018)

- Fix disabled cursor
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ html {
/* Android 4+ */ Roboto,
/* Ubuntu 10.10+ */ Ubuntu,
/* Gnome 3+ */ Cantarell,
/* KDE Plasma 4+ */ Oxygen,
/* KDE Plasma 5+ */ Noto Sans,
/* fallback */ sans-serif,
/* macOS emoji */ "Apple Color Emoji",
/* Windows emoji */ "Segoe UI Emoji",
Expand Down Expand Up @@ -180,7 +180,7 @@ audio, canvas, iframe, img, svg, video {
##### SVGs fallback to the current text color

```css
svg {
svg:not([fill]) {
fill: currentColor;
}
```
Expand Down Expand Up @@ -231,7 +231,7 @@ a, area, button, input, label, select, summary, textarea, [tabindex] {
cursor: pointer;
}

[aria-disabled], [disabled] {
[aria-disabled="true"], [disabled] {
cursor: default;
}
```
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sanitize.css",
"version": "7.0.3",
"version": "8.0.0",
"description": "A best-practices CSS foundation",
"author": "Jonathan Neal <[email protected]>",
"contributors": [
Expand All @@ -21,7 +21,7 @@
"test": "stylelint sanitize.css"
},
"devDependencies": {
"stylelint": "^9.5.0",
"stylelint": "^9.6.0",
"stylelint-config-standard": "^18.2.0"
},
"stylelint": {
Expand Down

0 comments on commit 8a35f11

Please sign in to comment.