Skip to content

Commit

Permalink
Issue #1006 - fixed focus button
Browse files Browse the repository at this point in the history
  • Loading branch information
magsout committed Apr 27, 2016
1 parent 066db4d commit c051be2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions webcompat/static/css/development/components/button.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,17 @@
border: solid 4px var(--Button-defaultColor);
}

.wc-Button--default:hover:not(.is-disabled) {
.wc-Button--default:hover:not(.is-disabled),
.wc-Button--default:focus:not(.is-disabled) {
background-color: var(--Button-defaultColorHover);
}

.wc-Button--action {
border: solid 4px var(--Button-actionColor);
}

.wc-Button--action:hover:not(.is-disabled) {
.wc-Button--action:hover:not(.is-disabled),
.wc-Button--action:focus:not(.is-disabled) {
background-color: var(--Button-actionColorHover);
}

Expand Down

0 comments on commit c051be2

Please sign in to comment.