mirror of https://github.com/zulip/zulip.git
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:
parent
5a3d3f5303
commit
343536d4bc
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue