diff options
author | Joris | 2016-01-03 19:41:31 +0100 |
---|---|---|
committer | Joris | 2016-01-03 19:41:31 +0100 |
commit | a8309988518af5bddf62d6a326d990fde4069b40 (patch) | |
tree | 6ff9c0af27d78f8579b5c3975378a3c82899593c /public/css | |
parent | 0cba27cba2b44756389d50bc113f23a2be87e978 (diff) |
Set focus properties to button elements
Diffstat (limited to 'public/css')
-rw-r--r-- | public/css/reset.css | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/public/css/reset.css b/public/css/reset.css index a8ccc8a..2eecc94 100644 --- a/public/css/reset.css +++ b/public/css/reset.css @@ -53,9 +53,8 @@ button { background-color: transparent; } button:hover { cursor: pointer; } -button::-moz-focus-inner { - border: 0; -} +button::-moz-focus-inner { border: 0; } +:focus { outline: none; } html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; } |