diff options
author | Christian Hesse <mail@eworm.de> | 2024-10-16 11:59:42 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2025-08-18 21:14:41 +0200 |
commit | f226d7efbb30af4388957ba5d885854275951d3d (patch) | |
tree | e1bec8bd28846c6b8727766d5bb2da975648f55b | |
parent | ui-log: show commit message in tooltip (diff) | |
download | cgit-f226d7efbb30af4388957ba5d885854275951d3d.tar.gz cgit-f226d7efbb30af4388957ba5d885854275951d3d.tar.bz2 cgit-f226d7efbb30af4388957ba5d885854275951d3d.zip |
ui-log: build ellipsis from bullets
These look cleaner... IMHO. 😜
Signed-off-by: Christian Hesse <mail@eworm.de>
-rw-r--r-- | ui-log.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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'>•••<span class='msg-tooltip'>"); html_txt(info->msg); html("</span></span>"); } |