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:
Yogesh Sirsat
2022-02-16 07:17:55 +05:30
committed by GitHub
parent 728fee31b2
commit dcae70c0c0

View File

@@ -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%);
}
}