mirror of https://github.com/zulip/zulip.git
css: Use SCSS nesting in zulip.scss for `#message-edit-history`.
This commit is contained in:
parent
62de6083a5
commit
7b0f015830
|
@ -642,23 +642,25 @@ td.pointer {
|
|||
transition: background-color 1.5s ease-in, color 1.5s ease-in;
|
||||
}
|
||||
|
||||
#message-edit-history .message_time {
|
||||
position: static;
|
||||
}
|
||||
#message-edit-history {
|
||||
.message_time {
|
||||
position: static;
|
||||
}
|
||||
|
||||
#message-edit-history .message_author {
|
||||
position: relative;
|
||||
}
|
||||
.message_author {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#message-edit-history .author_details {
|
||||
display: block;
|
||||
font-size: 12px;
|
||||
padding: 1px;
|
||||
text-align: right;
|
||||
}
|
||||
.author_details {
|
||||
display: block;
|
||||
font-size: 12px;
|
||||
padding: 1px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#message-edit-history .messagebox-content {
|
||||
padding: 0px 10px;
|
||||
.messagebox-content {
|
||||
padding: 0px 10px;
|
||||
}
|
||||
}
|
||||
|
||||
/* The way this overrides the menus with a background-color and a high
|
||||
|
|
Loading…
Reference in New Issue