aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2024-10-16 11:59:42 +0200
committerChristian Hesse <mail@eworm.de>2024-11-25 10:05:37 +0100
commit91a705c53979ce06e7345db8f9baad12094ace01 (patch)
treee12c739b8249b4f3bb40028a2efb06a36dd931c2
parente4d1e9cae04ccc0c575053f99b8c9c16fb9e3a88 (diff)
downloadcgit-91a705c53979ce06e7345db8f9baad12094ace01.tar.gz
cgit-91a705c53979ce06e7345db8f9baad12094ace01.tar.xz
ui-log: build ellipsis from bullets
These look cleaner... IMHO. 😜 Signed-off-by: Christian Hesse <mail@eworm.de>
-rw-r--r--ui-log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-log.c b/ui-log.c
index 4193831..78fd911 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -244,7 +244,7 @@ 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 class='msg-tooltip'>");
+ html("<span class='msg-avail'>&bull;&bull;&bull;<span class='msg-tooltip'>");
html_txt(info->msg);
html("</span></span>");
}