mirror of https://github.com/zulip/zulip.git
stream_settings: Ignore hover on actions column in tables.
In the dark theme, disable the hover behavior to display sorting options for actions column in tables (Which doesn't support this). Matches existing behavior in light theme. Fixes: #21137
This commit is contained in:
parent
728fee31b2
commit
dcae70c0c0
|
@ -83,7 +83,7 @@ body.dark-theme {
|
|||
table.table-striped thead.table-sticky-headers th {
|
||||
background-color: hsl(0, 0%, 0%);
|
||||
|
||||
&:hover {
|
||||
&:hover:not(.actions) {
|
||||
background-color: hsl(211, 29%, 14%);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue