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.
This commit is contained in:
Maneesh Shukla
2025-08-08 11:38:23 +05:30
committed by Tim Abbott
parent 6e43d34a34
commit 340b6adab4

View File

@@ -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;
}
}
}