[feat](trx-frontend-http): move band plan overlay to top of spectrum view

Repositions the bandplan strip from the bottom of the combined spectrum
canvas to the top. Updates HTML element order, CSS bp-webgl absolute
positioning, and WebGL rendering Y coordinates.

https://claude.ai/code/session_015sRhGsk7ggRYoxJANDY72S
Signed-off-by: Claude <noreply@anthropic.com>
This commit is contained in:
Claude
2026-03-30 08:10:48 +00:00
committed by Stan Grams
parent b8f6208aa7
commit 9dbf6fc64e
3 changed files with 6 additions and 7 deletions
@@ -3303,11 +3303,10 @@ button:focus-visible, input:focus-visible, select:focus-visible {
/* ── WebGL overlay mode ── When the spectrum canvas is visible the coloured
segments are rendered via WebGL. The DOM strip repositions itself as a
transparent label overlay at the bottom of the spectrum canvas, just above
the waterfall. */
transparent label overlay at the top of the spectrum canvas. */
#spectrum-bandplan-strip.bp-webgl {
position: absolute;
top: calc(var(--spectrum-plot-height) - 18px);
top: 0;
left: 0;
right: 0;
background: transparent;