From f6f59f3d00bc7890bd63d206a349baa252909a2f Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 30 Mar 2026 08:30:29 +0000 Subject: [PATCH] [fix](trx-frontend-http): move band plan strip above waterfall in z-order The band plan strip was visually positioned between the waterfall and waveform areas. Move it to the top of .signal-visual-block (above the overview/waterfall) so it renders above the waterfall. Remove the bp-webgl transparent overrides since the strip now shows colored segments in its own position rather than overlaying the spectrum canvas. https://claude.ai/code/session_01KoxcohG6hn5b7kSc3mC4dA Signed-off-by: Claude --- .../trx-frontend-http/assets/web/app.js | 4 +++ .../trx-frontend-http/assets/web/index.html | 2 +- .../trx-frontend-http/assets/web/style.css | 26 +++---------------- 3 files changed, 9 insertions(+), 23 deletions(-) diff --git a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/app.js b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/app.js index 44c5f73..e659a3a 100644 --- a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/app.js +++ b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/app.js @@ -1263,6 +1263,10 @@ function ensureOverviewCanvasBackingStore() { function signalOverlayHeight() { if (!overviewCanvas) return 0; let height = overviewCanvas.clientHeight || 0; + // Include the bandplan strip height when it sits above the overview. + if (bandplanStripEl && bandplanStripEl.classList.contains("bp-visible")) { + height += bandplanStripEl.clientHeight || 0; + } const spectrumCanvasEl = document.getElementById("spectrum-canvas"); const spectrumPanelEl = document.getElementById("spectrum-panel"); const spectrumVisible = diff --git a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/index.html b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/index.html index 16c3d60..7341c82 100644 --- a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/index.html +++ b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/index.html @@ -107,6 +107,7 @@