Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Issue #1006 - fixed focus button
  • Loading branch information
magsout committed Apr 27, 2016
commit c051be250810e776fbb78823f16163983fa0828b
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