From 3be0e340ea27086760401f31ba6f195b24292c3b Mon Sep 17 00:00:00 2001 From: librelad Date: Sat, 4 Jul 2026 22:27:57 +0100 Subject: [PATCH] fix(marketplace/site): keep the empty focus bar hidden (class display vs [hidden]) .focusbar's display:flex was overriding the hidden attribute, leaving a thin empty bar under the status strip when no app was focused. Co-Authored-By: Claude Fable 5 Signed-off-by: librelad --- containers/marketplace/resources/site/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/containers/marketplace/resources/site/index.html b/containers/marketplace/resources/site/index.html index 8a816ce..57c3046 100644 --- a/containers/marketplace/resources/site/index.html +++ b/containers/marketplace/resources/site/index.html @@ -158,6 +158,7 @@ display: flex; align-items: center; gap: 12px; margin: 16px 22px 0; padding: 10px 16px; background: rgba(99,102,241,0.14); border: 1px solid rgba(99,102,241,0.4); border-radius: 12px; font-size: 0.9rem; } + .focusbar[hidden] { display: none; } /* class display: mustn't defeat the hidden attr */ .focusbar button { background: transparent; border: 1px solid var(--border-color); color: var(--text-primary); padding: 5px 12px; border-radius: 8px; cursor: pointer; font-size: 0.85rem; } .focusbar button:hover { background: rgba(var(--text-rgb),0.08); } .empty, .footnote { color: var(--text-muted); }