css: Fix hover color for "Edit topic" icon in recipient bars.

Previously, this had different hover behavior from the adjacent
elements, which seems like a bug.

The CSS for this component is shared with Recent Topics; we migrate
the styling for on_hover_topic_read for consistency.

Fixes #21273.
This commit is contained in:
Junchen Liu 2022-03-01 01:07:28 -05:00 committed by Tim Abbott
parent 188c500802
commit e3237ae7e1

View File

@ -1372,11 +1372,6 @@ td.pointer {
color: hsl(200, 100%, 40%);
}
.on_hover_topic_edit,
.on_hover_topic_read {
opacity: 0.2;
}
.always_visible_topic_edit {
opacity: 0.7;
}
@ -1390,6 +1385,8 @@ td.pointer {
}
}
.on_hover_topic_edit,
.on_hover_topic_read,
.on_hover_topic_unresolve,
.on_hover_topic_resolve,
.on_hover_topic_mute {
@ -1401,9 +1398,7 @@ td.pointer {
}
}
.on_hover_topic_edit,
.always_visible_topic_edit,
.on_hover_topic_read {
.always_visible_topic_edit {
&:hover {
cursor: pointer;
opacity: 1;