diff --git a/stylesheets/components/ConversationHeader.scss b/stylesheets/components/ConversationHeader.scss index c8bd74980c..1026ca8b00 100644 --- a/stylesheets/components/ConversationHeader.scss +++ b/stylesheets/components/ConversationHeader.scss @@ -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%); + } + } } } }