List for cgit developers and users
 help / color / mirror / Atom feed
* [PATCH 1/1] ui-log: Show count of displayed commits
@ 2019-04-14 13:57 petr.vorel
  0 siblings, 0 replies; only message in thread
From: petr.vorel @ 2019-04-14 13:57 UTC (permalink / raw)


+ add CSS formatting.

Signed-off-by: Petr Vorel <petr.vorel at gmail.com>
---
 cgit.css | 5 +++++
 ui-log.c | 4 +++-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/cgit.css b/cgit.css
index d4aadbf..ca74508 100644
--- a/cgit.css
+++ b/cgit.css
@@ -893,3 +893,8 @@ div#cgit table.ssdiff td.space {
 div#cgit table.ssdiff td.space div {
 	min-height: 3em;
 }
+div#cgit div#count {
+	font-size: 90%;
+	padding-top: 10px;
+	padding-left: 6px;
+}
diff --git a/ui-log.c b/ui-log.c
index 3bcb657..b88e95e 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -515,7 +515,9 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern
 		commit->parents = NULL;
 	}
 	if (pager) {
-		html("</table><ul class='pager'>");
+		html("</table>");
+		htmlf("<div id='count'>Displayed items: %d</div>", i);
+		html("<ul class='pager'>");
 		if (ofs > 0) {
 			html("<li>");
 			cgit_log_link("[prev]", NULL, NULL, ctx.qry.head,
-- 
2.20.1



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2019-04-14 13:57 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-14 13:57 [PATCH 1/1] ui-log: Show count of displayed commits petr.vorel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).