mirror of
https://github.com/zulip/zulip.git
synced 2026-06-21 21:32:29 +08:00
css-loader@4 broke @import statements referencing files with extensions other than .css, unless those @import statements are compiled away by another loader. Upstream is more interested in arguing that such @import statements are semantically incorrect than applying the one line fix. https://github.com/webpack-contrib/css-loader/issues/1164 Signed-off-by: Anders Kaseorg <[email protected]>
26 lines
467 B
CSS
26 lines
467 B
CSS
#typing_notifications {
|
|
display: none;
|
|
margin-left: 10px;
|
|
font-style: italic;
|
|
color: hsl(0, 0%, 53%);
|
|
}
|
|
|
|
#typing_notification_list {
|
|
list-style: none;
|
|
margin: 0;
|
|
}
|
|
|
|
/* This max-width must be synced with message_viewport.is_narrow */
|
|
@media (max-width: 1165px) {
|
|
#typing_notifications {
|
|
margin-right: 7px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 775px) {
|
|
#typing_notifications {
|
|
margin-right: 7px;
|
|
margin-left: 7px;
|
|
}
|
|
}
|