Files
zulip/web/styles/message_edit_history.css
Anders Kaseorg d274583d8f styles: Use modern color notation.
postcss-preset-env transpiles this back as necessary.  (It does a
better job than we did, in fact: we had several four-argument hsl()
calls that should have been hsla().)

Signed-off-by: Anders Kaseorg <anders@zulip.com>
2023-03-24 17:26:55 -07:00

51 lines
971 B
CSS

#message-edit-history {
.message_top_line {
float: right;
}
.date_row > span {
display: flex;
align-items: center;
white-space: nowrap;
&::before,
&::after {
width: 100%;
margin: 0;
}
}
.message_time {
position: static;
}
.message_author {
position: relative;
}
.author_details {
display: block;
font-size: 12px;
padding: 1px;
text-align: right;
}
.messagebox-content {
padding: 0 10px;
}
.message_edit_history_content {
.highlight_text_inserted {
color: hsl(122deg 72% 30%);
background-color: hsl(120deg 64% 95%);
}
.highlight_text_deleted {
color: hsl(0deg 100% 50%);
background-color: hsl(7deg 90% 92%);
text-decoration: line-through;
word-break: break-all;
}
}
}