[fix](trx-frontend-http): move band plan strip above waterfall instead of between waveform and waterfall

Relocate the band plan strip from the top of the spectrum canvas to the
bottom, directly above the waterfall canvas. Move the DOM element inside
.spectrum-wrap before the waterfall canvas so it flows naturally in the
correct position. Remove the reparenting logic since the element is now
always inside .spectrum-wrap.

https://claude.ai/code/session_01FUD2eKgeXMFGhhYTzmA4Z6
Signed-off-by: Claude <noreply@anthropic.com>
This commit is contained in:
Claude
2026-03-30 07:49:43 +00:00
committed by Stan Grams
parent 9188b8ae4f
commit b8f6208aa7
3 changed files with 6 additions and 27 deletions
@@ -3303,10 +3303,11 @@ 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 top of the spectrum canvas. */
transparent label overlay at the bottom of the spectrum canvas, just above
the waterfall. */
#spectrum-bandplan-strip.bp-webgl {
position: absolute;
top: 0;
top: calc(var(--spectrum-plot-height) - 18px);
left: 0;
right: 0;
background: transparent;