From 93108c124814b67d3d8dcbd4f0c2b57d684f16e9 Mon Sep 17 00:00:00 2001 From: Stan Grams Date: Sun, 1 Mar 2026 10:27:11 +0100 Subject: [PATCH] [fix](trx-frontend): tighten two-state step scale toggle Resize the step scale control so it reads as a balanced two-option toggle instead of a leftover segmented control. Co-authored-by: OpenAI Codex Signed-off-by: Stan Grams --- .../trx-frontend/trx-frontend-http/assets/web/style.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 d8fbaad..c4d9edd 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 @@ -417,19 +417,22 @@ button:disabled { opacity: 0.6; cursor: not-allowed; } justify-content: flex-end; } .jog-mult { - display: flex; + display: inline-grid; + grid-template-columns: repeat(2, minmax(0, auto)); border: 1px solid var(--border-light); border-radius: 6px; overflow: hidden; height: 3.35rem; flex-shrink: 0; + width: auto; } .jog-mult button { + min-width: 3.15rem; border: none; border-right: 1px solid var(--border-light); border-radius: 0; height: 100%; - padding: 0 0.5rem; + padding: 0 0.7rem; font-size: 0.85rem; background: var(--input-bg); color: var(--text-muted);