about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--cgit.css9
-rw-r--r--ui-log.c3
2 files changed, 11 insertions, 1 deletions
diff --git a/cgit.css b/cgit.css index 66c6d53..983eac5 100644 --- a/cgit.css +++ b/cgit.css
@@ -590,6 +590,15 @@ div#cgit span.age-months {
590div#cgit span.age-years { 590div#cgit span.age-years {
591 color: #bbb; 591 color: #bbb;
592} 592}
593
594div#cgit span.insertions {
595 color: #080;
596}
597
598div#cgit span.deletions {
599 color: #800;
600}
601
593div#cgit div.footer { 602div#cgit div.footer {
594 margin-top: 0.5em; 603 margin-top: 0.5em;
595 text-align: center; 604 text-align: center;
diff --git a/ui-log.c b/ui-log.c index d6d94f6..c97b8e0 100644 --- a/ui-log.c +++ b/ui-log.c
@@ -258,7 +258,8 @@ static void print_commit(struct commit *commit, struct rev_info *revs)
258 if (ctx.repo->enable_log_filecount) 258 if (ctx.repo->enable_log_filecount)
259 htmlf("</td><td>%d", files); 259 htmlf("</td><td>%d", files);
260 if (ctx.repo->enable_log_linecount) 260 if (ctx.repo->enable_log_linecount)
261 htmlf("</td><td>-%d/+%d", rem_lines, add_lines); 261 htmlf("</td><td><span class='deletions'>-%d</span>/"
262 "<span class='insertions'>+%d</span>", rem_lines, add_lines);
262 263
263 html("</td></tr>\n"); 264 html("</td></tr>\n");
264 265