time: Align :hover color with message controls.

This commit is contained in:
Karl Stolley 2023-07-24 14:31:13 -05:00 committed by Tim Abbott
parent b294cf63ad
commit 6380184973
2 changed files with 5 additions and 1 deletions

View File

@ -567,6 +567,10 @@
color: hsl(0deg 0% 42% / 90%) !important; color: hsl(0deg 0% 42% / 90%) !important;
} }
.message_time:hover {
color: var(--color-message-action-interactive);
}
.message_reactions:hover .message_reaction + .reaction_button, .message_reactions:hover .message_reaction + .reaction_button,
.message_reactions .message_reaction { .message_reactions .message_reaction {
background-color: transparent; background-color: transparent;

View File

@ -1158,7 +1158,7 @@ td.pointer {
/* Disable blue link styling for the message timestamp link. */ /* Disable blue link styling for the message timestamp link. */
&:hover { &:hover {
text-decoration: none; text-decoration: none;
color: var(--color-text-default); color: var(--color-message-action-interactive);
} }
} }