From 3de007d9cd02ab30e82e00a821096b2946e7a4f7 Mon Sep 17 00:00:00 2001 From: Karl Stolley Date: Tue, 22 Aug 2023 14:17:45 -0500 Subject: [PATCH] actions: Make uniform horizontal alignment. --- web/styles/recent_topics.css | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/web/styles/recent_topics.css b/web/styles/recent_topics.css index 8f50cc1d7b..92d95c2e70 100644 --- a/web/styles/recent_topics.css +++ b/web/styles/recent_topics.css @@ -171,7 +171,8 @@ } .unread_mention_info:not(:empty) { - margin-right: -5px; + /* Zero out right margin from left sidebar presentation. */ + margin-right: 0; /* Match with its font-size. */ line-height: 14px; } @@ -212,8 +213,9 @@ } .recent_topic_actions { - /* To add spacing between unread count and mute icon */ - margin-left: 10px; + /* Add spacing between mention marker, unread count + and mute icon */ + margin-left: 5px; display: flex; flex-flow: row nowrap; } @@ -236,6 +238,12 @@ margin-top: 3px; } + .recent_topic_actions .recipient_bar_icon { + /* Zero out padding used in recipient bar. */ + padding-right: 0; + padding-left: 0; + } + .recent_topics_participants { display: inline-flex; /* Causes LI items to display in row. */ list-style-type: none;