From 2425f7da0139ba09a734e79db5ac9ea200e80a02 Mon Sep 17 00:00:00 2001 From: Sayam Samal Date: Tue, 16 Jul 2024 14:35:22 +0530 Subject: [PATCH] stream_popover: Fix stream lock icon position in stream actions popover. This commit overrides the margin-top set on the stream lock icon at the top-level in `app_components.css`, since we don't need to pull up this icon for the stream actions popover header. --- web/styles/popovers.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/web/styles/popovers.css b/web/styles/popovers.css index b978e6eb05..86cda681b1 100644 --- a/web/styles/popovers.css +++ b/web/styles/popovers.css @@ -220,6 +220,13 @@ margin-top: 4px; } + .zulip-icon-lock { + /* Override the margin-top set on the stream lock icon + at the top-level, since we don't need to pull up this + icon for the stream actions popover header. */ + margin: 0 !important; + } + .colorpicker-container { display: none; margin-right: 10px;