From af470a4c811fb4ec4a14d5c16fee221557a87806 Mon Sep 17 00:00:00 2001 From: Extra Small Date: Thu, 19 Mar 2026 00:24:23 -0700 Subject: [PATCH] fix delete confirm dialog overflowing viewport Position the confirmation popover below the delete button instead of above it, so it stays within the visible area when messages are near the top of the chat view. Closes #50277 --- ui/src/styles/chat/grouped.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/styles/chat/grouped.css b/ui/src/styles/chat/grouped.css index bce1c2422cf..90e427499ad 100644 --- a/ui/src/styles/chat/grouped.css +++ b/ui/src/styles/chat/grouped.css @@ -417,7 +417,7 @@ img.chat-avatar { .chat-delete-confirm { position: absolute; - bottom: calc(100% + 6px); + top: calc(100% + 6px); background: var(--card, #1a1a1a); border: 1px solid var(--border, rgba(255, 255, 255, 0.1)); border-radius: var(--radius-md, 8px);