From d2cfcdd09efe4914e8956d1b2211114bc7c4179a Mon Sep 17 00:00:00 2001 From: Santiago Kozak Date: Mon, 11 Sep 2023 23:20:57 -0300 Subject: [PATCH] Fix recent search items not handling overflows correctly (#26893) --- app/javascript/styles/mastodon/components.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index a017197492f..cd09bfca1f5 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -5061,6 +5061,11 @@ a.status-card { font-weight: 700; color: $primary-text-color; } + + span { + overflow: inherit; + text-overflow: inherit; + } } } }