Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-02-24 17:56:20 +0300
committerPhil Hughes <me@iamphill.com>2017-02-28 17:38:23 +0300
commite13dc680523c14c205c20c2cd299ad64c287cd23 (patch)
tree7cfe9b7bb59c749455c444cd1c523c4d907d5771 /app/assets/stylesheets/highlight/dark.scss
parentdb44e5569851d5542ae3fbe283cd7ccf0522b46a (diff)
Disables interaction with expanded lines
Fixed scss-lint errors
Diffstat (limited to 'app/assets/stylesheets/highlight/dark.scss')
-rw-r--r--app/assets/stylesheets/highlight/dark.scss7
1 files changed, 4 insertions, 3 deletions
diff --git a/app/assets/stylesheets/highlight/dark.scss b/app/assets/stylesheets/highlight/dark.scss
index 7d2818281a5..09951fe3d3e 100644
--- a/app/assets/stylesheets/highlight/dark.scss
+++ b/app/assets/stylesheets/highlight/dark.scss
@@ -21,6 +21,7 @@ $dark-highlight-color: $black;
$dark-pre-hll-bg: #373b41;
$dark-hll-bg: #373b41;
$dark-over-bg: #9f9ab5;
+$dark-expanded-bg: #3e3e3e;
$dark-c: #969896;
$dark-err: #c66;
$dark-k: #b294bb;
@@ -160,15 +161,15 @@ $dark-il: #de935f;
&.diff-expanded + .line_holder:not(.diff-expanded) {
> .diff-line-num,
> .line_content {
- border-top: 1px solid #000;
+ border-top: 1px solid $black;
}
}
&.diff-expanded {
> .diff-line-num,
> .line_content {
- background: #3e3e3e;
- border-color: #3e3e3e;
+ background: $dark-expanded-bg;
+ border-color: $dark-expanded-bg;
}
}
}