From 166963f2a19d5628cccf0850efdeb41ed7ac4261 Mon Sep 17 00:00:00 2001 From: Smittix Date: Fri, 30 Jan 2026 10:29:16 +0000 Subject: [PATCH] fix: Force navbar background color with !important Using !important to ensure the navbar background color (#151a23) cannot be overridden by any cascade or specificity issues. Co-Authored-By: Claude Opus 4.5 --- static/css/core/layout.css | 3 +-- static/css/index.css | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/static/css/core/layout.css b/static/css/core/layout.css index 804cd03..97c12cc 100644 --- a/static/css/core/layout.css +++ b/static/css/core/layout.css @@ -589,8 +589,7 @@ /* Mode Navigation Bar */ .mode-nav { display: none; - background: #151a23; /* Explicit color to ensure consistency across all pages */ - background: var(--bg-tertiary, #151a23); + background: #151a23 !important; /* Explicit color - forced to ensure consistency */ border-bottom: 1px solid var(--border-color); padding: 0 20px; } diff --git a/static/css/index.css b/static/css/index.css index 9518f16..d2b243a 100644 --- a/static/css/index.css +++ b/static/css/index.css @@ -640,8 +640,7 @@ header h1 { /* Mode Navigation Bar */ .mode-nav { display: none; - background: #151a23; /* Explicit color for consistency */ - background: var(--bg-tertiary, #151a23); + background: #151a23 !important; /* Explicit color - forced to ensure consistency */ border-bottom: 1px solid var(--border-color); padding: 0 20px; }