mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-06 10:58:17 -05:00
[PR #23460] [CLOSED] fix: consistent chat message bubble widths in widescreen mode #27208
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/open-webui/open-webui/pull/23460
Author: @chernistry
Created: 4/6/2026
Status: ❌ Closed
Base:
main← Head:fix/consistent-chat-bubble-sizes📝 Commits (1)
a367a8cfix: consistent chat message bubble widths in widescreen mode📊 Changes
1 file changed (+1 additions, -1 deletions)
View changed files
📝
src/app.css(+1 -1)📄 Description
Summary
Fixes the inconsistent conversation bubble sizing reported in #5975.
The root cause is that the
.markdown-proseclass applies Tailwind'sproseplugin, which sets a defaultmax-width: 65ch. This conflicts with the explicitw-full min-w-fullon message containers. When content like YAML code blocks exceeds the 65ch character limit, the prose max-width constraint causes the bubble to resize inconsistently as the browser recalculates layout during scrolling.The fix adds
max-w-noneto.markdown-prose, removing the prose plugin's default max-width. The parentMessagecomponent already controls the overall container width viamax-w-5xl(normal mode) ormax-w-full(widescreen mode), so no additional width constraint is needed on the prose wrapper. Code blocks continue to handle horizontal overflow correctly via their existingoverflow-x-auto.Changes
src/app.css: Addedmax-w-noneto.markdown-proseclassFixes #5975
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.