diff options
author | Jonas Smedegaard <dr@jones.dk> | 2020-06-21 15:23:17 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2020-06-21 15:23:17 +0200 |
commit | 2095347ef14895a3c9cd18944fccf2a3634c8693 (patch) | |
tree | d7d62675b95e4e0090d6382781ae2eef22d01ce7 | |
parent | a72fb0c9645a160378951163bdf08f761509c951 (diff) |
cgit: add grey line between line-numbers and plaintext content
-rw-r--r-- | cgit/web/local.scss | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cgit/web/local.scss b/cgit/web/local.scss index 46b9ba1..776ffac 100644 --- a/cgit/web/local.scss +++ b/cgit/web/local.scss @@ -4,9 +4,14 @@ div#cgit table.blob ol { padding: 0; - marging: 0; + margin: 0; } div#cgit table.blob li { height: 0; + &::before { + border-left: 1px solid grey; + margin-right: .5em; + content: ''; + } } |