mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
These changes adds a new scheduled message indicator in conversation views which informs the user of the number of messages that are scheduled to be sent to the current view. Fixes: #25584.
41 lines
718 B
CSS
41 lines
718 B
CSS
#scheduled_messages_overlay_container {
|
|
.scheduled-messages-loading {
|
|
margin-top: 10px;
|
|
display: grid;
|
|
|
|
> * {
|
|
grid-row-start: 1;
|
|
grid-column-start: 1;
|
|
margin: auto;
|
|
}
|
|
}
|
|
|
|
.no-overlay-messages {
|
|
display: none;
|
|
|
|
&:only-child {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
|
|
#scheduled_message_indicator {
|
|
display: block;
|
|
margin-left: 10px;
|
|
font-style: italic;
|
|
color: hsl(0deg 0% 53%);
|
|
}
|
|
|
|
@media (width < $xl_min) {
|
|
#scheduled_message_indicator {
|
|
margin-right: 7px;
|
|
}
|
|
}
|
|
|
|
@media (width < $md_min) {
|
|
#scheduled_message_indicator {
|
|
margin-right: 7px;
|
|
margin-left: 7px;
|
|
}
|
|
}
|