From ab0e12737811f1378848c50bfc2f8fde3c075ae0 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Sat, 7 Dec 2024 16:57:43 -0800 Subject: [PATCH] ui: Fix issue with notifications icon showing twice in mobile view - In mobile view, when the burger menu is clicked on, the menu is expanded and options are shown. In those options, notifications icon is shown while the menu is expanding but not when it is fully expanded. To fix this, hide it while expanding too. Signed-off-by: Sunil Mohan Adapa Reviewed-by: Veiko Aasa --- static/themes/default/css/main.css | 1 + 1 file changed, 1 insertion(+) diff --git a/static/themes/default/css/main.css b/static/themes/default/css/main.css index e5d9d10a7..cc9f58bc4 100644 --- a/static/themes/default/css/main.css +++ b/static/themes/default/css/main.css @@ -1027,6 +1027,7 @@ img.notification-icon { display: block; } + .collapsing .notifications-dropdown, .collapse .notifications-dropdown { display: none; }