Files
zulip/web/styles/typing_notifications.css
roanster007 7ebbdd942d typing: Move the typing notifications to below the mark as read banner.
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.
2024-06-18 14:30:19 -07:00

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;
}