css: Remove blue color, underline and transition effect from msg time.

This looks most likely a regression. Added `.messagebox-content`
to move priority of color set by us on `.messsage_time` above others.
This commit is contained in:
Aman Agrawal 2022-08-04 12:19:26 +00:00 committed by Tim Abbott
parent 5a3d3f5303
commit 343536d4bc
1 changed files with 6 additions and 3 deletions

View File

@ -909,14 +909,17 @@ td.pointer {
overflow-x: clip;
}
.message_time {
.messagebox-content .message_time {
display: block;
font-size: 12px;
opacity: 0.4;
font-weight: 400;
/* Disable blue link styling for the message timestamp link. */
color: var(--color-message-time);
transition: background-color 1.5s ease-in, color 1.5s ease-in;
/* Disable blue link styling for the message timestamp link. */
&:hover {
text-decoration: none;
color: var(--color-message-time);
}
a& {
z-index: 1;