all repos — cgit @ 6b5b655f6d2449fe33d8f48f6e98d5e421bf3ff9

a hyperfast web frontend for git written in c

ui-blame: Distinguish hashes column from lines column

Signed-off-by: Jeff Smith <whydoubt@gmail.com>
Reviewed-by: John Keeping <john@keeping.me.uk>
Jeff Smith whydoubt@gmail.com
Tue, 17 Oct 2017 23:17:32 -0500
commit

6b5b655f6d2449fe33d8f48f6e98d5e421bf3ff9

parent

1dd53e3a2ffec730ec27ebe15b3d63e0b417a544

2 files changed, 2 insertions(+), 1 deletions(-)

jump to
M cgit.csscgit.css

@@ -300,6 +300,7 @@ margin-top: 0.5em;

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;
M ui-blame.cui-blame.c

@@ -51,7 +51,7 @@ const char *cp, *cpend;

char *detail = emit_suspect_detail(suspect); - html("<tr><td class='sha1 lines'>"); + html("<tr><td class='sha1 hashes'>"); cgit_commit_link(find_unique_abbrev(oid->hash, DEFAULT_ABBREV), detail, NULL, ctx.qry.head, oid_to_hex(oid), suspect->path); html("</td>\n");