mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 22:43:42 +00:00
left_sidebar: Correct filter-input ellipsis bug in Safari.
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user