Theme FAB: transparent button bg on dark, add --theme-fab-btn-bg. Bump 03.09.32
Some checks failed
Repo Health / Access control (push) Successful in 1s
Auto-Update SHA Hash / Update SHA-256 Hash in updates.xml (release) Failing after 4s
Repo Health / Release configuration (push) Failing after 3s
Repo Health / Scripts governance (push) Successful in 3s
Repo Health / Repository health (push) Failing after 4s

Dark theme: icon button and auto switch background is transparent
on the off-white FAB. Light theme keeps subtle white overlay.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jonathan Miller
2026-04-18 16:18:29 -05:00
parent 87d53df6b6
commit 2d2e5ef2ea
7 changed files with 20 additions and 18 deletions

View File

@@ -17131,7 +17131,7 @@ form .form-select {
height: 32px;
border: none;
border-radius: 50%;
background: rgba(255,255,255,.15);
background: var(--theme-fab-btn-bg, rgba(255,255,255,.15));
color: inherit;
font-size: 1.1rem;
cursor: pointer;

View File

@@ -831,6 +831,7 @@ color-scheme: dark;
/* ===== THEME FAB ===== */
--theme-fab-bg: #e6ebf1;
--theme-fab-color: #0e1318;
--theme-fab-btn-bg: transparent;
/* ===== OFFLINE PAGE ===== */
--offline-card-bg: rgba(0, 0, 0, 0.6);

View File

@@ -830,6 +830,7 @@ color-scheme: light;
/* ===== THEME FAB ===== */
--theme-fab-bg: var(--color-primary, #112855);
--theme-fab-color: #fff;
--theme-fab-btn-bg: rgba(255,255,255,.15);
/* ===== OFFLINE PAGE ===== */
--offline-card-bg: rgba(0, 0, 0, 0.55);