[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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user