diff options
fix: make blames good
-rw-r--r-- | cgit.css | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -512,11 +512,24 @@ div#cgit table.blame td.linenumbers div.alt { } div#cgit table.blame div.alt:nth-child(even) { - background: #eee; + background: #0003; +} +div#cgit table.blame td:first-child div.alt { + border-top-left-radius: 8px; + border-bottom-left-radius: 8px; + border-left: 8px solid #0000; + border-right: 8px solid #0000; +} +div#cgit table.blame td:last-child div.alt { + border-top-right-radius: 8px; + border-bottom-right-radius: 8px; + border-left: 8px solid #0000; + border-right: 8px solid #0000; + margin-right: 2rem; } div#cgit table.blame div.alt:nth-child(odd) { - background: white; + background: #0000; } div#cgit table.blame td.lines > div { |