mirror of
https://github.com/zulip/zulip.git
synced 2026-07-15 21:03:26 +08:00
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:
parent
188c500802
commit
e3237ae7e1
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user