From af63fbb1deaee879ff178a1b65581ff9bea94b36 Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Wed, 11 Mar 2026 23:23:58 -0400 Subject: [PATCH] Fix remaining [[ ]] double-bracket bugs on Templates, History, and sub-tab buttons - Remove manual [ ] from sub-tab buttons (Manual Runs, Automated) - Add CSS to suppress button::before/after pseudo-elements on .tab buttons and border:none inline-styled buttons so they don't get double-bracketed - Prevents [[ text ]] from appearing on Templates/History/sub-tabs Co-Authored-By: Claude Sonnet 4.6 --- public/index.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index f4a0641..efa93a6 100644 --- a/public/index.html +++ b/public/index.html @@ -354,6 +354,9 @@ } button::before { content: '[ '; } button::after { content: ' ]'; } + /* Suppress bracket pseudo-elements for tab/nav buttons and inline-styled sub-tabs */ + button.tab::before, button.tab::after, + button[style*="border:none"]::before, button[style*="border:none"]::after { content: none; } button:hover { background: rgba(0, 255, 65, 0.15); color: var(--terminal-amber); @@ -841,12 +844,12 @@