From ca5dd7995202139bc4e6641d0ff00a390d13941c Mon Sep 17 00:00:00 2001 From: RAIT-09 <51452399+RAIT-09@users.noreply.github.com> Date: Sun, 18 Jan 2026 00:02:30 +0900 Subject: [PATCH] fix: limit horizontal scroll to tables instead of entire message area --- styles.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/styles.css b/styles.css index d6d49d9..0841427 100644 --- a/styles.css +++ b/styles.css @@ -426,11 +426,19 @@ If your plugin does not need CSS, delete this file. flex: 1; padding: 16px; overflow-y: auto; + overflow-x: hidden; display: flex; flex-direction: column; gap: 2px; } +/* Allow horizontal scroll for wide tables within messages */ +.agent-client-chat-view-messages table { + display: block; + overflow-x: auto; + max-width: 100%; +} + /* Error display */ .agent-client-chat-error-container { display: flex;