From ddc14060906057e35fbf398e080ca64011be04ee Mon Sep 17 00:00:00 2001 From: Aman Agrawal Date: Thu, 4 May 2023 12:37:41 +0000 Subject: [PATCH] css: Fix unread indicator being partially displayed on date_row. Add a border to the left of date row to override the unread indicator. --- web/styles/zulip.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/styles/zulip.css b/web/styles/zulip.css index 3b873b2940..859c89fa42 100644 --- a/web/styles/zulip.css +++ b/web/styles/zulip.css @@ -3028,6 +3028,8 @@ select.invite-as { .message_row.unread { .date_row { position: relative; + border-left: 1px solid var(--color-message-list-border); + left: -1px; /* Needs to be lower than the z-index of message_header. */ z-index: 3; }