mirror of https://github.com/zulip/zulip.git
styles: Add overflow: hidden fallback for overflow: clip.
overflow: clip is missing in Safari < 16. https://caniuse.com/css-overflow Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
9dbb43eb71
commit
5f76fb16b7
|
@ -144,6 +144,7 @@ li.show-more-topics {
|
|||
|
||||
.stream-name {
|
||||
flex: auto;
|
||||
overflow-x: hidden;
|
||||
overflow-x: clip;
|
||||
text-overflow: ellipsis;
|
||||
min-width: 0;
|
||||
|
@ -450,6 +451,7 @@ li.top_left_recent_topics {
|
|||
flex: auto;
|
||||
min-width: 0;
|
||||
white-space: nowrap;
|
||||
overflow-x: hidden;
|
||||
overflow-x: clip;
|
||||
text-overflow: ellipsis;
|
||||
padding-right: 2px;
|
||||
|
|
|
@ -998,6 +998,7 @@ td.pointer {
|
|||
top: 16px;
|
||||
user-select: none;
|
||||
white-space: nowrap;
|
||||
overflow-x: hidden;
|
||||
overflow-x: clip;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue