From afe420dcd303dd3e533ccfb90546ef02e412c35f Mon Sep 17 00:00:00 2001 From: Aman Agrawal Date: Tue, 19 Mar 2024 03:03:15 +0000 Subject: [PATCH] css: Hide left column in both navbar and app. This was a regression in #29331 with no visual effects. --- web/styles/zulip.css | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/web/styles/zulip.css b/web/styles/zulip.css index 564f5f7ef1..d3e7a0e834 100644 --- a/web/styles/zulip.css +++ b/web/styles/zulip.css @@ -2451,24 +2451,25 @@ select.invite-as { @media (width < $md_min) { .default-sidebar-behaviour { - .app-main .column-left { + .app-main .column-left, + .header-main .column-left { display: none; + } - &.expanded { - display: block; - position: absolute; - float: none; - left: 0; - top: 0; + .app-main .column-left.expanded { + display: block; + position: absolute; + float: none; + left: 0; + top: 0; - .left-sidebar { - background-color: var(--color-background); - box-shadow: 0 2px 3px 0 hsl(0deg 0% 0% / 10%); - border-right: 1px solid var(--color-border-sidebar); - height: 100%; - padding-left: 10px; - width: var(--left-sidebar-width); - } + .left-sidebar { + background-color: var(--color-background); + box-shadow: 0 2px 3px 0 hsl(0deg 0% 0% / 10%); + border-right: 1px solid var(--color-border-sidebar); + height: 100%; + padding-left: 10px; + width: var(--left-sidebar-width); } }