left_sidebar: Correct filter-input ellipsis bug in Safari.

This commit is contained in:
Karl Stolley
2025-07-24 10:11:18 -05:00
committed by Tim Abbott
parent 9720fc93c3
commit 8a833311de

View File

@@ -1082,6 +1082,13 @@ li.top_left_scheduled_messages {
.input { .input {
white-space: nowrap; white-space: nowrap;
overflow: hidden; 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; text-overflow: ellipsis;
} }
} }