mirror of https://github.com/zulip/zulip.git
message_header: Bring over control hover selectors.
This commit is contained in:
parent
a001f58c92
commit
6c5085b827
|
@ -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 {
|
.recipient_row_date {
|
||||||
color: var(--color-date);
|
color: var(--color-date);
|
||||||
font-size: calc(12em / 14);
|
font-size: calc(12em / 14);
|
||||||
|
|
|
@ -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
|
/* Make the action icon on the message row
|
||||||
always visible while the popover is open */
|
always visible while the popover is open */
|
||||||
.has_actions_popover .actions_hover {
|
.has_actions_popover .actions_hover {
|
||||||
|
|
Loading…
Reference in New Issue