From: Jeff Smith Date: Wed, 18 Oct 2017 04:17:32 +0000 (-0500) Subject: ui-blame: Distinguish hashes column from lines column X-Git-Url: https://gitweb.ps.run/ps-cgit/commitdiff_plain/6b5b655f6d2449fe33d8f48f6e98d5e421bf3ff9?ds=sidebyside ui-blame: Distinguish hashes column from lines column Signed-off-by: Jeff Smith Reviewed-by: John Keeping --- diff --git a/cgit.css b/cgit.css index 836f8ae..893ebeb 100644 --- a/cgit.css +++ b/cgit.css @@ -300,6 +300,7 @@ div#cgit table.blob { border-top: solid 1px black; } +div#cgit table.blob td.hashes, div#cgit table.blob td.lines { margin: 0; padding: 0 0 0 0.5em; vertical-align: top; diff --git a/ui-blame.c b/ui-blame.c index d4a4534..62647a8 100644 --- a/ui-blame.c +++ b/ui-blame.c @@ -51,7 +51,7 @@ static void emit_blame_entry(struct blame_scoreboard *sb, char *detail = emit_suspect_detail(suspect); - html(""); + html(""); cgit_commit_link(find_unique_abbrev(oid->hash, DEFAULT_ABBREV), detail, NULL, ctx.qry.head, oid_to_hex(oid), suspect->path); html("\n");