diff options
author | James Lopez <james@jameslopez.es> | 2016-05-03 11:34:13 +0200 |
---|---|---|
committer | James Lopez <james@jameslopez.es> | 2016-05-03 11:34:13 +0200 |
commit | 548c91e3c58d03d1e99c7945d14afe4abd605217 (patch) | |
tree | 6297684ea014e215b4dcb27478f8c9d9f3620835 /app/assets/stylesheets/highlight/white.scss | |
parent | 22ff009a54b281f8db2fd28530b84ebf53bf9de6 (diff) | |
parent | 2a78e03ad54baf78b10fb3297cf0f38d78b87aa8 (diff) | |
download | gitlab-ce-548c91e3c58d03d1e99c7945d14afe4abd605217.tar.gz |
Merge branch 'feature/project-export' of gitlab.com:gitlab-org/gitlab-ce into feature/project-import
# Conflicts:
# lib/gitlab/import_export/command_line_util.rb
Diffstat (limited to 'app/assets/stylesheets/highlight/white.scss')
-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; } } } |