message_header: Bring over control hover selectors.

This commit is contained in:
Karl Stolley 2024-05-03 12:15:04 -05:00 committed by Tim Abbott
parent a001f58c92
commit 6c5085b827
2 changed files with 25 additions and 25 deletions

View File

@ -229,6 +229,31 @@
}
}
.always_visible_topic_edit,
.on_hover_topic_read,
.stream_unmuted.on_hover_topic_unmute,
.stream_muted.on_hover_topic_mute {
opacity: 0.7;
&:hover {
cursor: pointer;
opacity: 1;
}
}
.on_hover_topic_edit,
.on_hover_topic_unresolve,
.on_hover_topic_resolve,
.stream_unmuted.on_hover_topic_mute,
.stream_muted.on_hover_topic_unmute {
opacity: 0.2;
&:hover {
cursor: pointer;
opacity: 0.7;
}
}
.recipient_row_date {
color: var(--color-date);
font-size: calc(12em / 14);

View File

@ -1095,31 +1095,6 @@ td.pointer {
}
}
.always_visible_topic_edit,
.on_hover_topic_read,
.stream_unmuted.on_hover_topic_unmute,
.stream_muted.on_hover_topic_mute {
opacity: 0.7;
&:hover {
cursor: pointer;
opacity: 1;
}
}
.on_hover_topic_edit,
.on_hover_topic_unresolve,
.on_hover_topic_resolve,
.stream_unmuted.on_hover_topic_mute,
.stream_muted.on_hover_topic_unmute {
opacity: 0.2;
&:hover {
cursor: pointer;
opacity: 0.7;
}
}
/* Make the action icon on the message row
always visible while the popover is open */
.has_actions_popover .actions_hover {