From 09c943e795bc0a5c7e2eb54cd3277509cdff4c81 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 4 Dec 2025 10:14:26 -0500 Subject: [PATCH] Fix: add !important to section-card dark mode rules MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Template inline styles have higher specificity than external CSS, so dark mode overrides need !important to take precedence. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/static/style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kjvstudy_org/static/style.css b/kjvstudy_org/static/style.css index 862fe84..4716a21 100644 --- a/kjvstudy_org/static/style.css +++ b/kjvstudy_org/static/style.css @@ -2531,13 +2531,13 @@ label.sidenote-number { } [data-theme="dark"] .section-card { - background: #1a1a1a; - border-color: #333; + background: #1a1a1a !important; + border-color: #333 !important; } [data-theme="dark"] .section-card h2 { - color: #e0e0e0; - border-bottom-color: #333; + color: #e0e0e0 !important; + border-bottom-color: #333 !important; } [data-theme="dark"] .person-card-name {