From 811622c4818dc5015504f0b0be9bbcef65840140 Mon Sep 17 00:00:00 2001 From: vickydotbat Date: Wed, 22 Jul 2026 09:56:18 +0000 Subject: [PATCH] fix(topbar): make topbar fully opaque (#38) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `.wg-topbar` background used `rgba(24, 20, 29, 0.98)`, letting page content faintly bleed through the header. Set it to a solid `rgb(24, 20, 29)` so the bar is fully opaque. Left `$wg-topbar-panel-bg` (dropdown/drawer panels, still `0.98`) untouched — those are popovers, not the bar itself. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Reviewed-on: https://git.westgate.pw/ShadowsOverWestgate/sow-nodebb-theme/pulls/38 Reviewed-by: xtul Co-authored-by: vickydotbat Co-committed-by: vickydotbat --- scss/westgate/_topbar.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/westgate/_topbar.scss b/scss/westgate/_topbar.scss index fead2c1..ff33ead 100644 --- a/scss/westgate/_topbar.scss +++ b/scss/westgate/_topbar.scss @@ -8,7 +8,7 @@ $wg-topbar-panel-bg: rgba(21, 17, 26, 0.98); top: 0; z-index: 1020; color: var(--wg-text-soft); - background: rgba(24, 20, 29, 0.98); + background: rgb(24, 20, 29); border-bottom: 1px solid rgba(194, 163, 90, 0.2); box-shadow: inset 0 1px 0 rgba(255, 244, 221, 0.04),