From f57047b9e7ffa88924cd873f7fbe9cf13a07554c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 3 Dec 2025 23:11:57 -0500 Subject: [PATCH] Show font size toggle button on mobile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Keep the font toggle (A) visible on mobile while hiding other breadcrumb action buttons (speech, bookmark). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/base.html | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/kjvstudy_org/templates/base.html b/kjvstudy_org/templates/base.html index d7b9852..d9318bf 100644 --- a/kjvstudy_org/templates/base.html +++ b/kjvstudy_org/templates/base.html @@ -1241,9 +1241,17 @@ margin-top: 1rem; } - /* Hide breadcrumb action buttons on mobile */ + /* Hide most breadcrumb action buttons on mobile, but show font toggle */ .breadcrumb-actions { - display: none !important; + display: flex !important; + } + + .breadcrumb-actions .breadcrumb-action-btn { + display: none; + } + + .breadcrumb-actions .breadcrumb-action-btn.font-toggle { + display: flex; } [data-theme="dark"] .breadcrumb {