From d99ce625620251c111b60b49111764054a005e11 Mon Sep 17 00:00:00 2001 From: Stan Grams Date: Thu, 26 Mar 2026 21:01:12 +0100 Subject: [PATCH] =?UTF-8?q?[fix](trx-frontend-http):=20swap=20spectrum=20l?= =?UTF-8?q?ayout=20=E2=80=94=20waterfall=20on=20top,=20waveform=20on=20bot?= =?UTF-8?q?tom?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 Signed-off-by: Stan Grams --- .../trx-frontend/trx-frontend-http/assets/web/index.html | 2 +- .../trx-frontend/trx-frontend-http/assets/web/style.css | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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 60372a4..ff7ee5e 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 @@ -117,13 +117,13 @@
+
-
diff --git a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/style.css b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/style.css index 62ad286..dceee43 100644 --- a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/style.css +++ b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/style.css @@ -2989,13 +2989,12 @@ button:focus-visible, input:focus-visible, select:focus-visible { width: 100%; height: var(--spectrum-plot-height); background: var(--spectrum-bg); - border-radius: 6px 6px 0 0; cursor: crosshair; touch-action: none; } #spectrum-db-axis { position: absolute; - top: 0; + top: var(--spectrum-plot-height); left: 0; width: 3rem; height: var(--spectrum-plot-height); @@ -3111,7 +3110,7 @@ button:focus-visible, input:focus-visible, select:focus-visible { #spectrum-zoom-indicator { display: none; position: absolute; - top: 6px; + top: calc(var(--spectrum-plot-height) + 6px); right: 3.5rem; z-index: 9; font-size: 0.68rem; @@ -3151,6 +3150,7 @@ button:focus-visible, input:focus-visible, select:focus-visible { width: 100%; height: var(--spectrum-plot-height); background: var(--spectrum-bg); + border-radius: 6px 6px 0 0; cursor: crosshair; touch-action: none; } @@ -3199,7 +3199,7 @@ button:focus-visible, input:focus-visible, select:focus-visible { } .spectrum-bookmark-side { position: absolute; - top: calc(var(--spectrum-plot-height) / 2); + top: calc(var(--spectrum-plot-height) * 1.5); transform: translateY(-50%); z-index: 7; width: var(--spectrum-bookmark-side-width);