From c96d0dbea6f233125aa2f18984db44412901a0a3 Mon Sep 17 00:00:00 2001 From: Alberto Bertogli Date: Sun, 27 Aug 2017 14:46:52 +0100 Subject: style: Make line numbers grey When using pygments, make the line numbers grey. This was the intention all along, but the style overrides the
style and the grey colour does not take effect. This patch fixes the problem by setting the style specifically to within the line numbers div. --- static/git-arr.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/static/git-arr.css b/static/git-arr.css index 2a0f7c1..7fc6efd 100644 --- a/static/git-arr.css +++ b/static/git-arr.css @@ -183,9 +183,11 @@ table.blob-binary tr.etc { /* Pygments overrides. */ div.linenodiv { padding-right: 0.5em; - color: gray; font-size: medium; } +div.linenodiv a { + color: gray; +} div.source_code { background: inherit; font-size: medium; -- cgit v1.2.3