From aee69b924c59c7c43b1d06e619e98d6e6d7485a6 Mon Sep 17 00:00:00 2001 From: gronod Date: Sun, 23 Aug 2026 09:10:47 +0100 Subject: [PATCH] fix(ui): ensure process output text boxes wrap properly (fixes #21) --- src/styles/main.css | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/src/styles/main.css b/src/styles/main.css index 6f69c84..64b91ec 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -233,8 +233,7 @@ button:disabled { font-size: 0.9em; } -#targenLog, -#printtargLog { +.log-container pre { margin: 0; font-family: monospace; font-size: 0.9em; @@ -242,6 +241,7 @@ button:disabled { max-height: 200px; overflow-y: auto; white-space: pre-wrap; + overflow-wrap: anywhere; } /* ======================================== @@ -497,16 +497,7 @@ button.danger:hover { border-color: #f44336; } -/* Process log for chartread */ -#chartreadLog { - margin: 0; - font-family: monospace; - font-size: 0.9em; - color: #ccc; - max-height: 200px; - overflow-y: auto; - white-space: pre-wrap; -} + /* ======================================== Stage 4: Spinner & Success Card -- 2.39.5