From e90921ebb0057aa805e3e1844a8b344b07be6d1d Mon Sep 17 00:00:00 2001 From: Erik Thiele Date: Thu, 30 Jul 2026 15:28:05 +0200 Subject: [PATCH] Fix brand color regression from making the logo a link Turning
into (for the topbar refactor) let the global 'a { color: var(--accent-hover) }' rule override the "Link" text, tinting it purple instead of the intended near-white body text color. Set color explicitly on .brand so only the "Vault" span keeps the accent color. Co-Authored-By: Claude Sonnet 5 --- app/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/base.html b/app/templates/base.html index bff1e93..dea1ba3 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -43,7 +43,7 @@ display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; background: var(--panel); border-bottom: 1px solid var(--border); } - header.topbar .brand { font-weight: 700; font-size: 1.2rem; } + header.topbar .brand { font-weight: 700; font-size: 1.2rem; color: var(--text); } header.topbar .brand span { color: var(--accent-hover); } .topbar-right { display: flex; align-items: center; gap: 16px; } .user-info { color: var(--muted); font-size: .9rem; display: flex; gap: 12px; align-items: center; }