Skip to content

Commit

Permalink
Fix Join call button in conversation header hover/focus styles
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiebuilds-signal committed Jan 22, 2024
1 parent 4dc52a6 commit 5c6ff62
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions stylesheets/components/ConversationHeader.scss
Original file line number Diff line number Diff line change
Expand Up @@ -278,10 +278,19 @@
width: $icon-size;
}

// Override hover state coming from __button above.
&:hover,
&:focus {
background-color: darken($background, 16%);
&:not(:disabled) {
// Override hover state coming from __button above.
&:hover {
@include any-theme {
background-color: darken($background, 16%);
}
}

&:focus {
@include keyboard-mode {
background-color: darken($background, 16%);
}
}
}
}
}
Expand Down

0 comments on commit 5c6ff62

Please sign in to comment.