Fix Join call button in conversation header hover/focus styles

This commit is contained in:
Jamie Kyle 2024-01-22 12:01:50 -08:00 committed by GitHub
parent 4dc52a6fff
commit 5c6ff62530
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -278,12 +278,21 @@
width: $icon-size; width: $icon-size;
} }
&:not(:disabled) {
// Override hover state coming from __button above. // Override hover state coming from __button above.
&:hover, &:hover {
&:focus { @include any-theme {
background-color: darken($background, 16%); background-color: darken($background, 16%);
} }
} }
&:focus {
@include keyboard-mode {
background-color: darken($background, 16%);
}
}
}
}
} }
&__disappearing-timer__item { &__disappearing-timer__item {