From 2531ba401ccf3ad152db7bf93de527e814dce6a1 Mon Sep 17 00:00:00 2001 From: DL Techy Date: Sat, 11 Jul 2026 20:52:14 +0800 Subject: [PATCH] fix(chat): Expand user chat bubble edit textbox width (#3963) * fix(chat): Expand user chat bubble edit textbox width - Update user chat bubble width from `fit-content` to `85%` to ensure consistency with the AI chat bubble edit textbox width. * style(chat): Refine user message bubble width logic - Change general bubble width to `fit-content` - Set width to 85% specifically for user messages containing a `textarea` --- static/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/static/style.css b/static/style.css index 640f05d90..1c899e479 100644 --- a/static/style.css +++ b/static/style.css @@ -2070,6 +2070,9 @@ body.bg-pattern-sparkles { overflow-wrap: break-word; overflow: hidden; } + .msg-user:has(textarea) { + width: 85%; + } .msg-ai { align-items: flex-start; margin-right: auto;