]> granicus.if.org Git - cgit/commitdiff
ui-log: show ellipsis if detailed commit message is available ch/log-commit-message
authorChristian Hesse <mail@eworm.de>
Fri, 16 Dec 2022 17:37:10 +0000 (18:37 +0100)
committerChristian Hesse <mail@eworm.de>
Mon, 19 Dec 2022 17:06:32 +0000 (18:06 +0100)
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>
cgit.css
ui-log.c

index 1b848cf712c9e93c3c29e299008786d6edae87d4..f1fcade051c9d3a70be9ff0b26d945e1f618ad26 100644 (file)
--- a/cgit.css
+++ b/cgit.css
@@ -673,6 +673,14 @@ div#cgit div.footer a:hover {
        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;
+}
+
 div#cgit a.branch-deco {
        color: #000;
        margin: 0px 0.5em;
index 311304ab80abd60fd957d5bf89a5d1a3d5e008d3..0b6fd38978d3ac19bd6fffe5f6a03ff5c6b6a550 100644 (file)
--- a/ui-log.c
+++ b/ui-log.c
@@ -240,6 +240,8 @@ static void print_commit(struct commit *commit, struct rev_info *revs)
        }
        cgit_commit_link(info->subject, NULL, NULL, ctx.qry.head,
                         oid_to_hex(&commit->object.oid), ctx.qry.vpath);
+       if (!ctx.qry.showmsg && strlen(info->msg) > 0)
+               html("<span class='msg-avail'>...</span>");
        show_commit_decorations(commit);
        html("</td><td>");
        cgit_open_filter(ctx.repo->email_filter, info->author_email, "log");