aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2022-12-16 18:37:10 +0100
committerChristian Hesse <mail@eworm.de>2026-04-20 21:54:37 +0200
commit7b1e8dfb285627a98b5703c527fb2683af3501a5 (patch)
tree7e9a606ed062c7da213c64d006027e64f0f67538
parent9874f9d721765435b3a8183faec5daaaa42f2f28 (diff)
downloadcgit-7b1e8dfb285627a98b5703c527fb2683af3501a5.tar.gz
cgit-7b1e8dfb285627a98b5703c527fb2683af3501a5.tar.bz2
cgit-7b1e8dfb285627a98b5703c527fb2683af3501a5.zip
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>
-rw-r--r--cgit.css9
-rw-r--r--ui-log.c2
2 files changed, 11 insertions, 0 deletions
diff --git a/cgit.css b/cgit.css
index d10a24d..1d4634c 100644
--- a/cgit.css
+++ b/cgit.css
@@ -678,6 +678,15 @@ 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;
+ border-radius: 5px;
+}
+
div#cgit a.branch-deco {
color: #000;
margin: 0px 0.5em;
diff --git a/ui-log.c b/ui-log.c
index 9906bbc..ee51bde 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -244,6 +244,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 && info->msg && *(info->msg))
+ html("<span class='msg-avail'>...</span>");
show_commit_decorations(commit);
html("</td><td>");
cgit_open_filter(ctx.repo->email_filter, info->author_email, "log");