Commit 1a596671 authored by Phil Hughes's avatar Phil Hughes

Fixed padding on line content

parent ba07fa07
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
// explicit child selectors. // explicit child selectors.
.code { .code {
background-color: #fff;
font-family: monospace; font-family: monospace;
font-size: $code_font_size; font-size: $code_font_size;
-premailer-cellpadding: 0; -premailer-cellpadding: 0;
...@@ -25,8 +26,8 @@ ...@@ -25,8 +26,8 @@
.diff-line-num { .diff-line-num {
padding: 0 5px; padding: 0 5px;
text-align: right; text-align: right;
max-width: 50px;
width: 35px; width: 35px;
background-color: $background-color;
color: $black-transparent; color: $black-transparent;
border-right: 1px solid $table-border-gray; border-right: 1px solid $table-border-gray;
...@@ -42,8 +43,9 @@ ...@@ -42,8 +43,9 @@
} }
.line_content { .line_content {
padding-left: 0.5em;
padding-right: 0.5em;
white-space: pre; white-space: pre;
background-color: #fff;
&.old { &.old {
background-color: $line-removed; background-color: $line-removed;
...@@ -69,10 +71,6 @@ ...@@ -69,10 +71,6 @@
} }
} }
.diff-line-num {
background-color: $background-color;
}
span.highlight_word { span.highlight_word {
background-color: #fafe3d !important; background-color: #fafe3d !important;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment