From 59366c40d72f88d58f3d05a44def6e92884968b9 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 19 May 2026 20:39:58 +0300 Subject: [PATCH 1/2] fix description popover overflowing the screen on mobile --- src/components/attachment/attachment.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/attachment/attachment.scss b/src/components/attachment/attachment.scss index 0a1f9f5ee..3c3ba7751 100644 --- a/src/components/attachment/attachment.scss +++ b/src/components/attachment/attachment.scss @@ -269,7 +269,9 @@ .description-popover { padding: 1em; width: 50ch; + max-width: 90vw; overflow: hidden; + box-sizing: border-box; summary { display: inline-block; From 21ba0924ad87fbf5435d3b39d84a7a8ab43f2599 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 19 May 2026 20:40:50 +0300 Subject: [PATCH 2/2] changelog --- changelog.d/minor.change | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.d/minor.change b/changelog.d/minor.change index a234ad9c2..979d36955 100644 --- a/changelog.d/minor.change +++ b/changelog.d/minor.change @@ -4,3 +4,4 @@ reply/quote now is a radio group and wraps, fixes overflow on languages where la personal note input is now bigger moved "edit pinned" to the bottom for status action buttons. dots status action button drops down instead of up to avoid hiding the action buttons +improved attachment description (alt text) input and display