Revert "dark-mode: Remove unnecessary CSS and fix dark mode bugs."

This reverts commit 64381b6e38.

It turns out we actually needed this for inline code blocks to work.
This commit is contained in:
Brock Whittaker 2017-11-30 12:44:25 -08:00 committed by Tim Abbott
parent 30475ba4c4
commit bc11b0f1e8
1 changed files with 6 additions and 0 deletions

View File

@ -288,3 +288,9 @@ body.dark-mode .top-messages-logo svg circle {
fill: #fff;
stroke: #fff;
}
body.dark-mode .message_content code {
background-color: hsl(212, 25%, 15%);
border-color: hsla(0, 0%, 0%, 0.5);
color: inherit;
}