[feat](trx-frontend): simplify decoder history overlays

Move full-history clear actions into Settings > History.
Remove decoder pause controls and pause-only buffering paths.
Add close controls to live overlay bars and fix FT4/FT2 overlay naming.

Co-authored-by: OpenAI Codex <codex@openai.com>
Signed-off-by: Stanislaw Grams <stanislawgrams@gmail.com>
This commit is contained in:
2026-03-14 20:13:55 +01:00
parent ad6aa6aab4
commit b032473801
12 changed files with 283 additions and 411 deletions
@@ -821,7 +821,6 @@ small { color: var(--text-muted); }
display: inline-block;
}
.aprs-bar-window {
margin-left: auto;
display: inline-flex;
align-items: center;
color: var(--text-muted);
@@ -831,6 +830,13 @@ small { color: var(--text-muted); }
text-transform: none;
white-space: nowrap;
}
.aprs-bar-actions {
margin-left: auto;
display: inline-flex;
align-items: center;
gap: 0.38rem;
flex: 0 0 auto;
}
.aprs-bar-clear-wrap {
display: inline-flex;
align-items: center;
@@ -864,6 +870,30 @@ small { color: var(--text-muted); }
.aprs-bar-clear-wrap:hover {
color: inherit;
}
.aprs-bar-close {
display: inline-flex;
align-items: center;
justify-content: center;
width: 1.05rem;
height: 1.05rem;
padding: 0;
border: none;
border-radius: 999px;
background: transparent;
color: var(--text-muted);
font-family: inherit;
font-size: 0.95em;
font-weight: 700;
line-height: 1;
cursor: pointer;
opacity: 0.82;
transition: opacity 120ms, color 120ms, background-color 120ms;
}
.aprs-bar-close:hover {
opacity: 1;
color: var(--accent-green);
background: color-mix(in srgb, var(--btn-bg) 70%, transparent);
}
.aprs-bar-frame {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size: clamp(0.56rem, 0.92vw, 0.7rem);