mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00: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 <anders@zulip.com>
35 lines
706 B
CSS
35 lines
706 B
CSS
#message-edit-history {
|
|
.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(122, 72%, 30%);
|
|
background-color: hsl(120, 64%, 95%);
|
|
}
|
|
|
|
.highlight_text_deleted {
|
|
color: hsl(0, 100%, 50%);
|
|
background-color: hsl(7, 90%, 92%);
|
|
text-decoration: line-through;
|
|
word-break: break-all;
|
|
}
|
|
}
|
|
}
|