2022-12-09 10:13:09 +01:00
|
|
|
$avatar_column_width: 46px;
|
2023-01-23 08:18:30 +01:00
|
|
|
$distance_of_text_elements_from_message_box_top: 8.5px;
|
2023-06-14 20:40:08 +02:00
|
|
|
$distance_of_non_text_elements_from_message_box: 6px;
|
|
|
|
$message_box_margin: 3px;
|
2022-12-09 10:13:09 +01:00
|
|
|
|
2023-01-31 13:03:21 +01:00
|
|
|
/* The time column usually just needs enough space to display the
|
|
|
|
timestamp. The minimum width here is enough for "22:22 PM", which
|
|
|
|
is roughly the widest this will be in English; this is nice as the
|
|
|
|
timestamps and message controls will be vertically aligned.
|
|
|
|
|
|
|
|
But in some locales, the time encoding is wider, (especially where
|
|
|
|
the "PM" abbreviation is longer), so we allow the column to be
|
2023-07-10 16:45:41 +02:00
|
|
|
wider for individual messages if required, up to `max-content`, to
|
|
|
|
prevent ugly line-wrapping. In practice, it's unlikely we'll see
|
|
|
|
anything wider than 60px. */
|
2023-01-31 13:03:21 +01:00
|
|
|
$time_column_min_width: 50px; /* + padding */
|
|
|
|
|
2022-12-09 10:13:09 +01:00
|
|
|
.message_row {
|
2023-05-22 18:17:52 +02:00
|
|
|
display: grid;
|
2023-07-13 22:00:36 +02:00
|
|
|
grid-template: auto auto / 2px 1fr;
|
|
|
|
grid-template-areas:
|
|
|
|
"date_unread_marker date_row "
|
|
|
|
"message_unread_marker messagebox";
|
|
|
|
|
2023-05-22 18:17:52 +02:00
|
|
|
border-left: 1px solid var(--color-message-list-border);
|
|
|
|
border-right: 1px solid var(--color-message-list-border);
|
|
|
|
background-color: var(--color-background-stream-message-content);
|
|
|
|
|
|
|
|
&.direct_mention {
|
|
|
|
background-color: var(--color-background-direct-mention);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.group_mention {
|
|
|
|
background-color: var(--color-background-group-mention);
|
|
|
|
}
|
|
|
|
|
|
|
|
.date_row {
|
|
|
|
grid-area: date_row;
|
|
|
|
/* We only want padding for the date rows between recipient blocks */
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
|
|
|
& span {
|
|
|
|
font-size: calc(12em / 14);
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 600;
|
|
|
|
line-height: 17px; /* identical to box height, or 131% */
|
|
|
|
text-align: right;
|
|
|
|
letter-spacing: 0.04em;
|
|
|
|
color: var(--color-date);
|
2023-06-08 23:01:11 +02:00
|
|
|
/* Right padding matches time in message row and date in recipient row. */
|
|
|
|
padding: 8px 6px 8px 4px;
|
2023-05-22 18:17:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.unread_marker {
|
|
|
|
margin-left: var(--unread-marker-left);
|
|
|
|
opacity: 0;
|
|
|
|
transition: all 0.3s ease-out;
|
|
|
|
|
|
|
|
&.slow_fade {
|
|
|
|
transition: all 2s ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.fast_fade {
|
|
|
|
transition: all 0.3s ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.date_unread_marker {
|
|
|
|
grid-area: date_unread_marker;
|
|
|
|
|
|
|
|
.unread-marker-fill {
|
|
|
|
border-radius: 0 !important;
|
|
|
|
height: 100% !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.message_unread_marker {
|
|
|
|
grid-area: message_unread_marker;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.unread-marker-fill {
|
|
|
|
height: 100%;
|
2023-05-24 20:09:02 +02:00
|
|
|
width: 2px;
|
|
|
|
background: linear-gradient(
|
|
|
|
90deg,
|
|
|
|
var(--color-unread-marker) 30%,
|
|
|
|
hsl(217deg 64% 59% / 0%)
|
|
|
|
);
|
2023-05-22 18:17:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.unread .unread_marker {
|
|
|
|
transition: all 0.3s ease-out;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.messagebox {
|
|
|
|
grid-area: messagebox;
|
|
|
|
word-wrap: break-word;
|
|
|
|
cursor: pointer;
|
|
|
|
border: none;
|
|
|
|
/* The left padding value accounts for a 2px
|
|
|
|
unread marker, ensuring a uniform 5px of
|
|
|
|
padding on either side of the message box. */
|
|
|
|
padding: 0 5px 0 3px;
|
|
|
|
|
|
|
|
&:hover .message_controls,
|
|
|
|
&:focus-within .message_controls,
|
|
|
|
&:hover .message_failed,
|
|
|
|
&:focus-within .message_failed {
|
|
|
|
.empty-star:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
> div {
|
|
|
|
opacity: 1;
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-09 10:13:09 +01:00
|
|
|
.messagebox .messagebox-content {
|
|
|
|
display: grid;
|
2023-06-13 18:12:48 +02:00
|
|
|
align-items: baseline;
|
2022-12-09 10:13:09 +01:00
|
|
|
padding-left: 10px;
|
2023-06-21 21:37:43 +02:00
|
|
|
grid-template:
|
|
|
|
25px repeat(3, auto) /
|
2023-07-10 16:45:41 +02:00
|
|
|
$avatar_column_width auto 55px 3px minmax(
|
|
|
|
$time_column_min_width,
|
|
|
|
max-content
|
|
|
|
);
|
2023-06-21 21:37:43 +02:00
|
|
|
/* Named grid areas provide flexibility for positioning grid items
|
|
|
|
reliably, even if the row or column definitions of the grid change. */
|
|
|
|
grid-template-areas:
|
2023-07-10 16:45:41 +02:00
|
|
|
"edited message controls . time"
|
|
|
|
". message . . . "
|
|
|
|
". more . . . "
|
|
|
|
". reactions . . . ";
|
2022-12-09 10:13:09 +01:00
|
|
|
|
|
|
|
@media (width < $sm_min) {
|
2023-07-10 16:45:41 +02:00
|
|
|
grid-template-columns: $avatar_column_width auto max-content 3px minmax(
|
|
|
|
$time_column_min_width,
|
|
|
|
max-content
|
2023-01-31 13:03:21 +01:00
|
|
|
);
|
2022-12-09 10:13:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.message_controls {
|
2023-06-21 21:37:43 +02:00
|
|
|
grid-area: controls;
|
2022-12-09 10:13:09 +01:00
|
|
|
justify-self: end;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
@media (width < $sm_min) {
|
|
|
|
padding: 0 4px;
|
|
|
|
|
|
|
|
/* This is intended to target the first message_controls child
|
|
|
|
when there are 3 displayed. 4 = 3 + hidden message_failed element. */
|
|
|
|
.message_control_button:nth-last-child(4) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_edit_notice {
|
2023-06-21 21:37:43 +02:00
|
|
|
grid-area: edited;
|
2022-12-09 10:13:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.message_time {
|
|
|
|
justify-self: end;
|
2023-04-08 02:48:02 +02:00
|
|
|
padding-right: 5px;
|
2023-01-31 13:03:21 +01:00
|
|
|
text-align: end;
|
2023-06-21 21:37:43 +02:00
|
|
|
grid-area: time;
|
2022-12-09 10:13:09 +01:00
|
|
|
|
|
|
|
&.notvisible {
|
|
|
|
/* This happens when message failed to send. We don't want to
|
|
|
|
display time but still want it to occupy space. */
|
|
|
|
width: 45px !important;
|
|
|
|
position: unset !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-17 19:54:09 +01:00
|
|
|
.slow-send-spinner {
|
|
|
|
display: none;
|
|
|
|
justify-self: end;
|
|
|
|
margin-right: 10px;
|
|
|
|
text-align: end;
|
2023-06-21 21:37:43 +02:00
|
|
|
grid-area: time;
|
2023-03-17 19:54:09 +01:00
|
|
|
}
|
|
|
|
|
2022-12-09 10:13:09 +01:00
|
|
|
.message_content {
|
2023-06-21 21:37:43 +02:00
|
|
|
grid-area: message;
|
2023-05-23 04:37:50 +02:00
|
|
|
/*
|
|
|
|
Space between two single line messages in a paragraph is 10px.
|
|
|
|
There is 3px margin above and below a message. So, having a 2px
|
|
|
|
padding above and below the message will make the space between
|
|
|
|
all single paragraphs the same.
|
|
|
|
*/
|
|
|
|
padding: 2px 0;
|
2022-12-09 10:13:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.message_reactions {
|
2023-06-21 21:37:43 +02:00
|
|
|
grid-area: reactions;
|
2023-05-23 04:37:50 +02:00
|
|
|
margin-top: -1px;
|
2022-12-09 10:13:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.message_edit {
|
2023-06-21 21:37:43 +02:00
|
|
|
grid-area: message;
|
2023-06-21 19:07:23 +02:00
|
|
|
/* Align self to start, rather than baseline, so the baseline
|
|
|
|
is preserved from the message itself--keeping the time,
|
|
|
|
edit message, and controls at the same vertical alignment. */
|
|
|
|
align-self: start;
|
2023-07-17 19:41:30 +02:00
|
|
|
/* Keep previewed messages from overflowing the grid area
|
|
|
|
that .message_edit is assigned to. */
|
|
|
|
overflow: hidden;
|
2023-06-21 19:07:23 +02:00
|
|
|
margin-top: $distance_of_non_text_elements_from_message_box;
|
2022-12-09 10:13:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-msg {
|
2023-06-21 21:37:43 +02:00
|
|
|
/* Span both the controls and time columns */
|
|
|
|
grid-row: controls-start;
|
|
|
|
grid-column: controls-start / time-end;
|
2022-12-09 10:13:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.message_length_controller {
|
2023-06-21 21:37:43 +02:00
|
|
|
grid-area: more;
|
2022-12-09 10:13:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.include-sender {
|
|
|
|
.messagebox .messagebox-content {
|
2023-06-21 21:37:43 +02:00
|
|
|
grid-template-areas:
|
2023-07-10 16:45:41 +02:00
|
|
|
"avatar sender controls . time"
|
|
|
|
"avatar message . . . "
|
|
|
|
". more . . . "
|
|
|
|
". reactions . . . ";
|
2022-12-09 10:13:09 +01:00
|
|
|
|
2023-06-21 19:07:23 +02:00
|
|
|
.message_edit {
|
|
|
|
/* No top margin when there's a sender row */
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2023-06-14 20:40:08 +02:00
|
|
|
&.is-me-message {
|
|
|
|
grid-template-areas:
|
2023-07-10 16:45:41 +02:00
|
|
|
"avatar sender controls . time"
|
|
|
|
"avatar sender . . . "
|
|
|
|
". more . . . "
|
|
|
|
". reactions . . . ";
|
2023-06-14 20:40:08 +02:00
|
|
|
|
2023-06-30 19:27:06 +02:00
|
|
|
.message-avatar {
|
|
|
|
/* Set the line-height to match the height of the avatar image
|
|
|
|
to center me-messages within the baseline group. */
|
|
|
|
line-height: var(--message-box-avatar-height);
|
|
|
|
align-self: baseline;
|
|
|
|
}
|
|
|
|
|
2023-06-14 20:40:08 +02:00
|
|
|
.message_sender {
|
|
|
|
/* Don't display message sender as flexbox for me-messages. */
|
|
|
|
display: block;
|
|
|
|
/* This preserves a consistent bottom spacing on the me-message
|
|
|
|
grid, which ordinarily benefits from the margin of <p>
|
|
|
|
elements in the markdown--which single-line me-messages do
|
|
|
|
not receive.
|
|
|
|
|
|
|
|
It also ensures a uniform space-relationship between the top: of the avatar and the top of the sender_name line.
|
|
|
|
|
|
|
|
However, this should all arguably be handled from the grid
|
|
|
|
container or the grid definition itself. */
|
|
|
|
margin: $message_box_margin 0;
|
|
|
|
|
|
|
|
/* Set the same line-height as on message content for
|
|
|
|
me-messages. */
|
|
|
|
line-height: var(--message-box-line-height);
|
|
|
|
|
|
|
|
/* Display message components inline, with wrapping white-space,
|
|
|
|
so the sender name and message display as a continuous line
|
|
|
|
of wrapping text. */
|
|
|
|
.sender_name {
|
|
|
|
white-space: normal;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
2023-06-21 19:07:23 +02:00
|
|
|
|
|
|
|
&.content_edit_mode {
|
|
|
|
.message_sender {
|
|
|
|
/* Keep the me-message participating in the baseline */
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message_edit {
|
|
|
|
/* Use the sender grid area for the me-message edit/view-source box */
|
|
|
|
grid-area: sender;
|
|
|
|
margin-top: $distance_of_non_text_elements_from_message_box;
|
|
|
|
}
|
|
|
|
}
|
2023-06-14 20:40:08 +02:00
|
|
|
}
|
|
|
|
|
2023-07-07 17:26:25 +02:00
|
|
|
.message-avatar {
|
2023-06-14 21:03:37 +02:00
|
|
|
grid-area: avatar;
|
|
|
|
/* The picture should not participate in the baseline group. */
|
|
|
|
align-self: start;
|
2023-06-14 20:40:08 +02:00
|
|
|
/* Because the avatar may be the tallest element in a
|
|
|
|
single-line me message, this margin preserves the
|
|
|
|
overall height of the message box. */
|
|
|
|
margin: $distance_of_non_text_elements_from_message_box 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status-message {
|
|
|
|
font-weight: normal;
|
2023-06-14 21:03:37 +02:00
|
|
|
}
|
|
|
|
|
2022-12-09 10:13:09 +01:00
|
|
|
.message_content {
|
|
|
|
padding-top: 0;
|
2023-06-21 21:37:43 +02:00
|
|
|
grid-area: message;
|
2022-12-09 10:13:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.message_time {
|
2023-06-21 21:37:43 +02:00
|
|
|
grid-area: time;
|
2022-12-09 10:13:09 +01:00
|
|
|
}
|
|
|
|
|
2023-03-17 19:54:09 +01:00
|
|
|
.slow-send-spinner {
|
|
|
|
align-self: center;
|
|
|
|
position: unset;
|
|
|
|
margin-top: 1px;
|
|
|
|
}
|
|
|
|
|
2022-12-09 10:13:09 +01:00
|
|
|
.message_edit_notice {
|
2023-06-13 18:12:48 +02:00
|
|
|
/* When the edit notice is inline, as on edited me-messages,
|
|
|
|
the inline-block and accompanying vertical-align styles will
|
|
|
|
apply */
|
2023-06-14 18:38:13 +02:00
|
|
|
display: inline-block;
|
2023-06-13 18:12:48 +02:00
|
|
|
vertical-align: baseline;
|
2023-06-14 18:38:13 +02:00
|
|
|
/* A bit of margin here helps these not look associated with the name. */
|
|
|
|
margin-left: 4px;
|
2022-12-09 10:13:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.message_controls {
|
2023-06-21 21:37:43 +02:00
|
|
|
grid-area: controls;
|
2022-12-09 10:13:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.message_sender {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2023-06-21 21:37:43 +02:00
|
|
|
grid-area: sender;
|
2023-06-14 21:03:37 +02:00
|
|
|
display: flex;
|
|
|
|
/* Ensure flexed sender info (name, status emoji, inline EDITED)
|
|
|
|
forms a baseline group, which will participate with the
|
|
|
|
message-box grid's baseline group, too. */
|
|
|
|
align-items: baseline;
|
2022-12-09 10:13:09 +01:00
|
|
|
|
2023-06-14 20:40:08 +02:00
|
|
|
margin-top: $message_box_margin;
|
|
|
|
|
2022-12-09 10:13:09 +01:00
|
|
|
.zulip-icon.zulip-icon-bot {
|
|
|
|
align-self: center;
|
2023-07-26 17:03:34 +02:00
|
|
|
padding: 0 0 0 5px;
|
2023-04-27 20:10:56 +02:00
|
|
|
}
|
|
|
|
|
2023-07-13 21:28:44 +02:00
|
|
|
.sender_name {
|
2022-12-09 10:13:09 +01:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
/* It is important to use line-height `normal` here since user's name can
|
|
|
|
be in any language and `line-height: 1` doesn't work to accommodate text
|
|
|
|
from start and end vertically in all languages. */
|
|
|
|
line-height: normal;
|
|
|
|
outline: none;
|
2023-06-13 18:12:48 +02:00
|
|
|
align-self: baseline;
|
2023-04-27 20:03:37 +02:00
|
|
|
}
|
2022-12-09 10:13:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-03-17 08:40:08 +01:00
|
|
|
|
|
|
|
/* Locally echoed messages. */
|
2023-04-15 12:01:15 +02:00
|
|
|
&.locally-echoed .message_time {
|
2023-03-17 08:40:08 +01:00
|
|
|
opacity: 0;
|
2023-04-15 14:17:58 +02:00
|
|
|
/* Don't show pointer when message_time doesn't has a link. */
|
|
|
|
cursor: default;
|
2023-03-17 08:40:08 +01:00
|
|
|
}
|
2023-03-17 19:54:09 +01:00
|
|
|
|
|
|
|
/* Show the spinner only for messages that are still locally echoed. */
|
2023-04-15 12:01:15 +02:00
|
|
|
&.locally-echoed .slow-send-spinner {
|
2023-03-17 19:54:09 +01:00
|
|
|
display: unset !important;
|
2023-04-15 14:17:58 +02:00
|
|
|
cursor: default;
|
2023-03-17 19:54:09 +01:00
|
|
|
}
|
2022-12-09 10:13:09 +01:00
|
|
|
}
|
2023-05-22 18:28:52 +02:00
|
|
|
|
|
|
|
.recipient_row {
|
|
|
|
/* See https://stackoverflow.com/questions/2717480/css-selector-for-first-element-with-class/8539107#8539107
|
|
|
|
for details on how this works */
|
|
|
|
.message_row.unread {
|
|
|
|
.date_unread_marker {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Select all but the first .message_row.unread,
|
|
|
|
and remove the properties set from the previous rule. */
|
|
|
|
.message_row.unread ~ .message_row.unread {
|
|
|
|
.date_unread_marker {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|