Commit c75da470c52cbf5ef10e2259f5e9be9b35bbe4aa

Authored by Drew Blessing
1 parent db949b69

Add background color to pre, too.

app/assets/stylesheets/highlight/dark.scss
... ... @@ -3,6 +3,7 @@
3 3 background-color: #333;
4 4  
5 5 pre {
  6 + background-color: #333;
6 7 color: #eee;
7 8 }
8 9  
... ...
app/assets/stylesheets/highlight/monokai.scss
... ... @@ -12,6 +12,7 @@ $monokai-purple: #ae81ff;
12 12 background-color: #272822;
13 13  
14 14 pre {
  15 + background-color: #272822;
15 16 color: $monokai-fg;
16 17 }
17 18  
... ...
app/assets/stylesheets/highlight/solarized_dark.scss
... ... @@ -3,6 +3,7 @@
3 3 background-color: #002B36;
4 4  
5 5 pre {
  6 + background-color: #002B36;
6 7 color: #eee;
7 8 }
8 9  
... ...
app/assets/stylesheets/highlight/white.scss
... ... @@ -3,6 +3,7 @@
3 3 background-color: #fff;
4 4  
5 5 pre {
  6 + background-color: #fff;
6 7 color: #333;
7 8 }
8 9  
... ...