From 340b6adab4233b51e33a594bc3ac4fc7310cc7a3 Mon Sep 17 00:00:00 2001 From: Maneesh Shukla Date: Fri, 8 Aug 2025 11:38:23 +0530 Subject: [PATCH] topic-filter-input: Remove text-overflow property. This commit removes the text-overflow property from input fields. Chrome has a bug where truncation indicators in scrollable contenteditable divs do not adjust when scrolling to the rightmost part of long text. This behavior is related to https://issues.chromium.org/issues/41245282. Firefox handles this correctly, but to ensure consistency, we will rely on the default behavior of input fields, hiding overflowed text without adding ellipses. Fixes part of #35284. --- web/styles/left_sidebar.css | 8 -------- 1 file changed, 8 deletions(-) diff --git a/web/styles/left_sidebar.css b/web/styles/left_sidebar.css index 2b340a6e7f..6771b3b458 100644 --- a/web/styles/left_sidebar.css +++ b/web/styles/left_sidebar.css @@ -1353,14 +1353,6 @@ li.top_left_scheduled_messages { white-space: nowrap; overflow: hidden; } - - /* We only establish the ellipsis when - the input is not focused, thanks to a - Safari bug that makes long inputs - unreachable and unscrollable. */ - .input:not(:focus) { - text-overflow: ellipsis; - } } }