Skip to content

Commit

Permalink
separate link focus selector to fix chrome ignoring selectors contain…
Browse files Browse the repository at this point in the history
…ing -moz prefix
  • Loading branch information
simbo committed Dec 10, 2020
1 parent d478d3e commit d361136
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "css-reset-and-normalize",
"version": "2.3.3",
"version": "2.3.4",
"description": "A combination of css reset and normalize (available in CSS, SCSS, Stylus and LESS)",
"author": "Simon Lepel <[email protected]> (http://simbo.de/)",
"license": "MIT",
Expand Down
5 changes: 4 additions & 1 deletion scss/link-reset.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ a {
color: inherit;
text-decoration: none;

&:-moz-focusring,
&:-moz-focusring {
outline:none;
}

&:focus {
outline: none;
}
Expand Down

0 comments on commit d361136

Please sign in to comment.