Skip to content
Snippets Groups Projects
Commit a27e4a14 authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

Merge pull request #1839 from mozilla/issue_1774_button_focus_state

Give a button highlight whenever it is focused.
parents eaa0d500 da1d2fa7
No related branches found
No related tags found
No related merge requests found
......@@ -180,6 +180,12 @@ button:focus,
background-image: linear-gradient(top, #43a6e2, #277ac1);
}
button:focus,
.button:focus {
box-shadow: 0 0 1px #fff, 0 0 1px 3px #49ADE3;
box-shadow: 0 0 1px rgba(255, 255, 255, 0.5), 0 0 1px 3px rgba(73, 173, 227, 0.6);
}
button:active,
.button:active {
background-color: #184a73;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment