diff options
-rw-r--r-- | cgit.css | 4 | ||||
-rw-r--r-- | ui-repolist.c | 11 |
2 files changed, 11 insertions, 4 deletions
diff --git a/cgit.css b/cgit.css index 651a320..54da076 100644 --- a/cgit.css +++ b/cgit.css | |||
@@ -548,6 +548,10 @@ div#cgit div.pager a { | |||
548 | margin: 0em 0.5em; | 548 | margin: 0em 0.5em; |
549 | } | 549 | } |
550 | 550 | ||
551 | div#cgit div.pager .current { | ||
552 | font-weight: bold; | ||
553 | } | ||
554 | |||
551 | div#cgit span.age-mins { | 555 | div#cgit span.age-mins { |
552 | font-weight: bold; | 556 | font-weight: bold; |
553 | color: #080; | 557 | color: #080; |
diff --git a/ui-repolist.c b/ui-repolist.c index 943eaab..46cbacf 100644 --- a/ui-repolist.c +++ b/ui-repolist.c | |||
@@ -123,11 +123,14 @@ void print_header(int columns) | |||
123 | 123 | ||
124 | void print_pager(int items, int pagelen, char *search, char *sort) | 124 | void print_pager(int items, int pagelen, char *search, char *sort) |
125 | { | 125 | { |
126 | int i; | 126 | int i, ofs; |
127 | char *class = NULL; | ||
127 | html("<div class='pager'>"); | 128 | html("<div class='pager'>"); |
128 | for(i = 0; i * pagelen < items; i++) | 129 | for(i = 0, ofs = 0; ofs < items; i++, ofs = i * pagelen) { |
129 | cgit_index_link(fmt("[%d]", i+1), fmt("Page %d", i+1), NULL, | 130 | class = (ctx.qry.ofs == ofs) ? "current" : NULL; |
130 | search, sort, i * pagelen); | 131 | cgit_index_link(fmt("[%d]", i+1), fmt("Page %d", i+1), class, |
132 | search, sort, ofs); | ||
133 | } | ||
131 | html("</div>"); | 134 | html("</div>"); |
132 | } | 135 | } |
133 | 136 | ||