From 22377feed1e199c3b7147bdddae562f6f8ca82ab Mon Sep 17 00:00:00 2001 From: SquadleDude <167652540+squadledude@users.noreply.github.com> Date: Mon, 3 Aug 2026 23:00:33 +0300 Subject: [PATCH] fix --- app/static/css/custom-ui-tweaks.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/app/static/css/custom-ui-tweaks.css b/app/static/css/custom-ui-tweaks.css index 6c2e50e..3861129 100644 --- a/app/static/css/custom-ui-tweaks.css +++ b/app/static/css/custom-ui-tweaks.css @@ -106,8 +106,13 @@ .navbar .navbar-brand .brand-logo { max-height: 48px; transform: translateY(4px); } } -/* Left sidebar styles (replaces top navbar) */ -.has-left-sidebar .fixed-top.width-100 { display: none !important; } +.has-left-sidebar .fixed-top.width-100 { + /* Keep the top bar visible when a left sidebar is present. + Shift it right so it doesn't overlap the sidebar and reduce its width. */ + left: 220px !important; + width: calc(100% - 220px) !important; + box-sizing: border-box; +} .left-sidebar { position: fixed; left: 0;