diff --git a/HISTORY.md b/HISTORY.md index 01c2dcc..3fc9769 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -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 diff --git a/src/buttons/css/buttons-core.css b/src/buttons/css/buttons-core.css index 8acc8f4..7d9b8f6 100644 --- a/src/buttons/css/buttons-core.css +++ b/src/buttons/css/buttons-core.css @@ -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; -} -