mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
This commit adds the ability for users to include notes with their message reminders. Fixes #35070. Co-Authored-By: Aman Agrawal <amanagr@zulip.com>
30 lines
567 B
CSS
30 lines
567 B
CSS
#reminders-overlay-container,
|
|
#scheduled_messages_overlay_container {
|
|
.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%);
|
|
}
|
|
|
|
#reminders-overlay-container .message_content {
|
|
cursor: auto;
|
|
}
|
|
|
|
.schedule-reminder-note {
|
|
/* Horizontal resizing in the popover doesn't look good at all. */
|
|
resize: vertical;
|
|
width: 100%;
|
|
min-width: 10em;
|
|
padding: 3px;
|
|
}
|