From 13d1bb2e5afed57e8f087301537ae1bc5e525bda Mon Sep 17 00:00:00 2001
From: Christian Hesse <mail@eworm.de>
Date: Wed, 16 Oct 2024 11:59:42 +0200
Subject: [PATCH] ui-log: build ellipsis from bullets
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

These look cleaner... IMHO. 😜

Signed-off-by: Christian Hesse <mail@eworm.de>
---
 ui-log.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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>");
 	}