diff --git a/web/styles/left_sidebar.css b/web/styles/left_sidebar.css index c779875416..ee0221fd66 100644 --- a/web/styles/left_sidebar.css +++ b/web/styles/left_sidebar.css @@ -1082,6 +1082,13 @@ li.top_left_scheduled_messages { .input { 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; } }