From d9abc3537f6cc94ba872ede09358beff23372cd1 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 2 Dec 2025 23:11:47 -0500 Subject: [PATCH] Remove kekule number badges from interactive family tree MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Keep gold border lines for Christ's lineage highlighting. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../templates/family_tree_interactive.html | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/kjvstudy_org/templates/family_tree_interactive.html b/kjvstudy_org/templates/family_tree_interactive.html index c33f60d..1984477 100644 --- a/kjvstudy_org/templates/family_tree_interactive.html +++ b/kjvstudy_org/templates/family_tree_interactive.html @@ -159,16 +159,6 @@ color: #4a7c59; } -.kekule-badge { - display: inline-block; - font-size: 0.75rem; - background: #d4af37; - color: white; - padding: 0.1rem 0.4rem; - border-radius: 3px; - margin-left: 0.5rem; -} - .person-meta { font-size: 0.95rem; color: #666; @@ -393,9 +383,6 @@ function buildTreeHTML(personId, depth = 0, visited = new Set(), isRoot = false) // Name line with expand toggle showing child count html += '
'; html += `${person.name}`; - if (hasKekule) { - html += `#${person.kekule_number}`; - } if (hasChildren) { html += `${isCollapsed ? '+' : '−'}`; } @@ -479,9 +466,6 @@ function buildAncestorsHTML(personId, depth = 0, visited = new Set(), isRoot = f // Name line with expand toggle showing parent count html += '
'; html += `${person.name}`; - if (hasKekule) { - html += `#${person.kekule_number}`; - } if (hasParents) { html += `${isCollapsed ? '+' : '−'}`; }