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
path: root/app
diff options
context:
space:
mode:
authordimitrieh <dimitriehoekstra@gmail.com>2017-01-25 03:31:41 +0300
committerdimitrieh <dimitriehoekstra@gmail.com>2017-01-25 03:31:41 +0300
commiteee1f8a2ce8aa83156d326f6d34f430d39fd191f (patch)
treec3ef4595d8e9e38c109921ec743a2ec31f8a204a /app
parentd55839120e92be48b30d248ce9d72a19be038c79 (diff)
Color + and - signs in diffs to increase code legibility
Diffstat (limited to 'app')
-rw-r--r--app/assets/stylesheets/pages/diff.scss2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/diff.scss b/app/assets/stylesheets/pages/diff.scss
index 96ba7c40634..73623f33609 100644
--- a/app/assets/stylesheets/pages/diff.scss
+++ b/app/assets/stylesheets/pages/diff.scss
@@ -154,6 +154,7 @@
content: '-';
position: absolute;
left: 0.5em;
+ color: #af979a;
}
}
@@ -162,6 +163,7 @@
content: '+';
position: absolute;
left: 0.5em;
+ color: #9bb0a1;
}
}
}