[feat](trx-frontend-http): add audio play/stop toggle button in header

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Signed-off-by: Stan Grams <sjg@haxx.space>
This commit is contained in:
2026-03-21 23:13:01 +01:00
parent 5a12a321b2
commit 730dbcc20d
3 changed files with 42 additions and 0 deletions
@@ -1026,6 +1026,25 @@ small { color: var(--text-muted); }
gap: 0.6rem;
min-width: 0;
}
.header-audio-btn {
width: 2rem;
height: 2rem;
min-height: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--border-light);
border-radius: 6px;
background: var(--input-bg);
color: var(--text-muted);
cursor: pointer;
flex-shrink: 0;
}
.header-audio-btn.audio-active {
color: var(--accent-green);
border-color: var(--accent-green);
}
.header-rig-switch {
display: flex;
align-items: center;