From mboxrd@z Thu Jan 1 00:00:00 1970 From: john at keeping.me.uk (John Keeping) Date: Sat, 21 Oct 2017 15:33:22 +0100 Subject: [PATCH 1/4] ui-blame: Distinguish hashes column from lines column In-Reply-To: <20171018041735.31592-2-whydoubt@gmail.com> References: <20171018041735.31592-1-whydoubt@gmail.com> <20171018041735.31592-2-whydoubt@gmail.com> Message-ID: <20171021143322.GC2393@john.keeping.me.uk> On Tue, Oct 17, 2017 at 11:17:32PM -0500, Jeff Smith wrote: > Signed-off-by: Jeff Smith Reviewed-by: John Keeping > --- > cgit.css | 1 + > ui-blame.c | 2 +- > 2 files changed, 2 insertions(+), 1 deletion(-) > > 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 62cf431..a5ac590 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");