mirror of https://github.com/zulip/zulip.git
Adjust color of code blocks and blockquote line in selected message
Make sure they still stand out against the grey background. It's less clear that we should do this for private messages as well, but it seems fine for now. Fixes #658. (imported from commit 4c750208b5f2697e91c1c4fa7365d2744260c6f2)
This commit is contained in:
parent
8f434fb63e
commit
e4fa9e7ddd
|
@ -125,6 +125,21 @@ td.pointer {
|
|||
background-color: #08c;
|
||||
}
|
||||
|
||||
/* Adjust certain message elements so they still
|
||||
stand out against the grey background */
|
||||
|
||||
.selected_message pre {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.selected_message code {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.selected_message blockquote {
|
||||
border-left-color: #BBB;
|
||||
}
|
||||
|
||||
.message_picture {
|
||||
vertical-align: top;
|
||||
text-align: right;
|
||||
|
|
Loading…
Reference in New Issue