Commit 050e4848 authored by Phil Hughes's avatar Phil Hughes

Reduced diff email CSS

parent 850bb6db
...@@ -11,40 +11,27 @@ ...@@ -11,40 +11,27 @@
// explicit child selectors. // explicit child selectors.
table.code { table.code {
width: 100%;
font-family: monospace; font-family: monospace;
border: none; font-size: $code_font_size;
border-collapse: separate;
margin: 0;
padding: 0;
-premailer-cellpadding: 0; -premailer-cellpadding: 0;
-premailer-cellspacing: 0; -premailer-cellspacing: 0;
-premailer-width: 100%; -premailer-width: 100%;
> tr > td { tr {
line-height: $code_line_height; line-height: $code_line_height;
font-family: monospace; }
font-size: $code_font_size;
&.diff-line-num {
margin: 0;
padding: 0;
border: none;
padding: 0 5px;
border-right: 1px solid;
text-align: right;
min-width: 35px;
max-width: 50px;
width: 35px;
}
&.line_content { .diff-line-num {
display: block; padding: 0 5px;
margin: 0; text-align: right;
padding: 0 0.5em; max-width: 50px;
border: none; width: 35px;
white-space: pre; border-right-width: 1px;
} border-right-style: solid;
}
.line_content {
white-space: pre;
} }
} }
...@@ -57,32 +44,24 @@ table.code { ...@@ -57,32 +44,24 @@ table.code {
} }
pre.code, .diff-line-num { pre.code, .diff-line-num {
border-color: $table-border-gray; border-right: 1px solid $table-border-gray;
}
.code.white, pre.code, .line_content {
background-color: #fff;
color: #333;
} }
.diff-line-num { .diff-line-num {
&.old { &.old {
background-color: $line-number-old; background-color: $line-number-old;
border-color: $line-removed-dark; border-right-color: $line-removed-dark;
} }
&.new { &.new {
background-color: $line-number-new; background-color: $line-number-new;
border-color: $line-added-dark; border-right-color: $line-added-dark;
}
&.hll:not(.empty-cell) {
background-color: $line-number-select;
border-color: $line-select-yellow-dark;
} }
} }
.line_content { .line_content {
background-color: #fff;
&.old { &.old {
background-color: $line-removed; background-color: $line-removed;
...@@ -103,14 +82,6 @@ pre.code, .diff-line-num { ...@@ -103,14 +82,6 @@ pre.code, .diff-line-num {
color: $black-transparent; color: $black-transparent;
background-color: $match-line; background-color: $match-line;
} }
&.hll:not(.empty-cell) {
background-color: $line-select-yellow;
}
}
pre > .hll {
background-color: #f8eec7 !important;
} }
span.highlight_word { span.highlight_word {
......
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