Remove ridiculous a:focus { outline: none; } rule

This rule should have never been here, it's one of the worst things we
could have done for accessibility :(
This commit is contained in:
Eric Ferraiuolo 2013-06-05 09:31:48 -04:00
parent a85dbedf22
commit 5925e3327a
2 changed files with 3 additions and 6 deletions

View File

@ -4,6 +4,9 @@ Pure Change History
NEXT
----
* Fixed accessability mistake by removing `a:focus {outline: none;}` rule from
`buttons-core.css`.
### Forms
* (!) `.pure-help-inline` has been replaced with `.pure-form-message-inline`. We

View File

@ -14,14 +14,8 @@
user-select: none;
}
/* Firefox: Get rid of the inner focus border */
.pure-button::-moz-focus-inner{
padding: 0;
border: 0;
}
a:focus {
outline: none;
}