diff options
author | Jacob Schatz <jschatz@gitlab.com> | 2016-04-25 19:30:15 +0000 |
---|---|---|
committer | Jacob Schatz <jschatz@gitlab.com> | 2016-04-25 19:30:15 +0000 |
commit | 3d115d6748aff3888819b1bb4641e805a2ecd38b (patch) | |
tree | b16751c93b5c02854a9698388cecdc9dcfb70eda /app/assets/stylesheets/highlight | |
parent | ad46466cb9999c3cb2c8dfad0a5608839385f88d (diff) | |
parent | b014ec2b8344601693546f6c6fb413f64fe3698e (diff) | |
download | gitlab-ce-3d115d6748aff3888819b1bb4641e805a2ecd38b.tar.gz |
Merge branch 'diff-line-colors' into 'master'
Update diff blue & yellow to match design
<img src="/uploads/60e1351fb04ab1c8969685fbc8b61c88/Screen_Shot_2016-04-22_at_9.12.17_AM.png" width="500px">
<img src="/uploads/6812b22ec53f3041811261daa0584822/Screen_Shot_2016-04-22_at_9.12.05_AM.png" width="500px">
See merge request !3883
Diffstat (limited to 'app/assets/stylesheets/highlight')
-rw-r--r-- | app/assets/stylesheets/highlight/white.scss | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/app/assets/stylesheets/highlight/white.scss b/app/assets/stylesheets/highlight/white.scss index 1ff6ad75e07..31a4e3deaac 100644 --- a/app/assets/stylesheets/highlight/white.scss +++ b/app/assets/stylesheets/highlight/white.scss @@ -21,11 +21,6 @@ // Diff line .line_holder { - td.diff-line-num.hll:not(.empty-cell), - td.line_content.hll:not(.empty-cell) { - background-color: #f8eec7; - border-color: darken(#f8eec7, 15%); - } .diff-line-num { &.old { @@ -37,11 +32,16 @@ background-color: $line-number-new; border-color: $line-added-dark; } + + &.hll:not(.empty-cell) { + background-color: $line-number-select; + border-color: $line-select-yellow-dark; + } } .line_content { &.old { - background: $line-removed; + background-color: $line-removed; span.idiff { background-color: $line-removed-dark; @@ -58,7 +58,11 @@ &.match { color: $black-transparent; - background: $match-line; + background-color: $match-line; + } + + &.hll:not(.empty-cell) { + background-color: $line-select-yellow; } } } |