mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
Previously, the typing notifications used to appear between the message list and the mark as read banner in a thread. This would cause the banner to shift down whenever someone starts typing, and shift back up if everyone stops typing. This frequent bouncing of the banner could be distracting, and hence, is fixed by moving the typing notifications to below the mark as read banner.
19 lines
401 B
CSS
19 lines
401 B
CSS
#typing_notifications {
|
|
display: none;
|
|
margin-left: 10px;
|
|
font-style: italic;
|
|
color: hsl(0deg 0% 53%);
|
|
}
|
|
|
|
#typing_notification_list {
|
|
list-style: none;
|
|
margin: 0;
|
|
}
|
|
|
|
#mark_as_read_turned_off_banner {
|
|
/* override the margin of main-view-banner since it causes
|
|
more gap than we want between mark as read banner and typing
|
|
notification. */
|
|
margin: 5px 0;
|
|
}
|