mirror of https://github.com/zulip/zulip.git
stream_settings: Make disabled tab look disabled in dark mode.
Make disabled tabs look disabled in dark mode by adding color to ".ind-tab.disabled" in "dark_theme.css". Fixes #20917.
This commit is contained in:
parent
0cc4b180b7
commit
563b06ee08
|
@ -357,6 +357,10 @@ body.dark-theme {
|
|||
border-color: hsla(0, 0%, 0%, 0.9);
|
||||
}
|
||||
|
||||
.ind-tab.disabled {
|
||||
color: hsla(0, 0%, 42%, 0.9) !important;
|
||||
}
|
||||
|
||||
.message_reactions:hover .message_reaction + .reaction_button,
|
||||
.message_reactions .message_reaction {
|
||||
background-color: transparent;
|
||||
|
|
Loading…
Reference in New Issue