From 112381ada175807b5ba5d219e83e940215e2e893 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 4 Dec 2025 11:51:41 -0500 Subject: [PATCH] Fix search dropdown background in light mode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Set explicit #ffffff background for family tree search dropdown - Darken border slightly for better definition 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/family_tree.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kjvstudy_org/templates/family_tree.html b/kjvstudy_org/templates/family_tree.html index ce808b9..9f50555 100644 --- a/kjvstudy_org/templates/family_tree.html +++ b/kjvstudy_org/templates/family_tree.html @@ -70,11 +70,11 @@ top: 100%; left: 0; right: 0; - background: #fff; - border: 1px solid #ddd; + background: #ffffff; + border: 1px solid #ccc; border-top: none; border-radius: 0 0 4px 4px; - box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); max-height: 280px; overflow-y: auto; display: none;