diff options
author | Jeff Smith <whydoubt@gmail.com> | 2017-10-17 23:17:34 -0500 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-01-19 11:40:55 +0100 |
commit | aafc42d8089437db5105feb12d540c33fe9f9e16 (patch) | |
tree | 1d30014cd12b5b4136b8555092355f07acb206c4 /cgit.css | |
parent | ui-blame: Break out emit_blame_entry into component methods (diff) | |
download | cgit-pink-aafc42d8089437db5105feb12d540c33fe9f9e16.tar.gz cgit-pink-aafc42d8089437db5105feb12d540c33fe9f9e16.zip |
ui-blame: Make each column into a single table cell
Signed-off-by: Jeff Smith <whydoubt@gmail.com> Reviewed-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to '')
-rw-r--r-- | cgit.css | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/cgit.css b/cgit.css index 893ebeb..20b7e86 100644 --- a/cgit.css +++ b/cgit.css @@ -330,11 +330,26 @@ div#cgit table.ssdiff td.lineno a:hover { color: black; } -div#cgit table.blame tr:nth-child(even) { +div#cgit table.blame td.hashes, +div#cgit table.blame td.lines, +div#cgit table.blame td.linenumbers { + padding: 0; +} + +div#cgit table.blame td.hashes div.alt, +div#cgit table.blame td.lines div.alt { + padding: 0 0.5em 0 0.5em; +} + +div#cgit table.blame td.linenumbers div.alt { + padding: 0 0.5em 0 0; +} + +div#cgit table.blame div.alt:nth-child(even) { background: #eee; } -div#cgit table.blame tr:nth-child(odd) { +div#cgit table.blame div.alt:nth-child(odd) { background: white; } |