From 343536d4bcc002926ba8f476c6a71a4bc9e83d74 Mon Sep 17 00:00:00 2001 From: Aman Agrawal Date: Thu, 4 Aug 2022 12:19:26 +0000 Subject: [PATCH] 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. --- static/styles/zulip.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/static/styles/zulip.css b/static/styles/zulip.css index 5de080d4c3..2c56805a41 100644 --- a/static/styles/zulip.css +++ b/static/styles/zulip.css @@ -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;