mirror of
https://git.zx2c4.com/cgit
synced 2024-11-10 02:28:41 +00:00
ui-log: show ellipsis if detailed commit message is available
The existence of a detailed commit message may be of interst even if only the subject is shown by default. Signed-off-by: Christian Hesse <mail@eworm.de>
This commit is contained in:
parent
a030759d3f
commit
933bdca263
9
cgit.css
9
cgit.css
@ -678,6 +678,15 @@ div#cgit div.footer a:hover {
|
|||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div#cgit span.msg-avail {
|
||||||
|
color: #000;
|
||||||
|
margin: 0px 0.5em;
|
||||||
|
padding: 0px 0.25em;
|
||||||
|
background-color: #f0f0f0;
|
||||||
|
border: solid 1px #777777;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
div#cgit a.branch-deco {
|
div#cgit a.branch-deco {
|
||||||
color: #000;
|
color: #000;
|
||||||
margin: 0px 0.5em;
|
margin: 0px 0.5em;
|
||||||
|
2
ui-log.c
2
ui-log.c
@ -243,6 +243,8 @@ static void print_commit(struct commit *commit, struct rev_info *revs)
|
|||||||
}
|
}
|
||||||
cgit_commit_link(info->subject, NULL, NULL, ctx.qry.head,
|
cgit_commit_link(info->subject, NULL, NULL, ctx.qry.head,
|
||||||
oid_to_hex(&commit->object.oid), ctx.qry.vpath);
|
oid_to_hex(&commit->object.oid), ctx.qry.vpath);
|
||||||
|
if (!ctx.qry.showmsg && info->msg && *(info->msg))
|
||||||
|
html("<span class='msg-avail'>...</span>");
|
||||||
show_commit_decorations(commit);
|
show_commit_decorations(commit);
|
||||||
html("</td><td>");
|
html("</td><td>");
|
||||||
cgit_open_filter(ctx.repo->email_filter, info->author_email, "log");
|
cgit_open_filter(ctx.repo->email_filter, info->author_email, "log");
|
||||||
|
Loading…
Reference in New Issue
Block a user