summaryrefslogtreecommitdiffabout
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.css6
-rwxr-xr-xtests/t0105-commit.sh2
-rw-r--r--ui-commit.c4
-rw-r--r--ui-log.h1
4 files changed, 12 insertions, 1 deletions
diff --git a/cgit.css b/cgit.css
index f844efa..957d5aa 100644
--- a/cgit.css
+++ b/cgit.css
@@ -502,2 +502,8 @@ a.deco {
}
+
+div.commit-subject a {
+ margin-left: 1em;
+ font-size: 75%;
+}
+
table.stats {
diff --git a/tests/t0105-commit.sh b/tests/t0105-commit.sh
index a864612..ae794c8 100755
--- a/tests/t0105-commit.sh
+++ b/tests/t0105-commit.sh
@@ -11,3 +11,3 @@ run_test 'find parent link' 'grep -E "<a href=./foo/commit/\?id=.+>" trash/tmp'
run_test 'find commit subject' '
- grep -e "<div class=.commit-subject.>commit 5</div>" trash/tmp
+ grep -e "<div class=.commit-subject.>commit 5<" trash/tmp
'
diff --git a/ui-commit.c b/ui-commit.c
index a6a85a4..41ce70e 100644
--- a/ui-commit.c
+++ b/ui-commit.c
@@ -12,2 +12,3 @@
#include "ui-diff.h"
+#include "ui-log.h"
@@ -36,2 +37,4 @@ void cgit_print_commit(char *hex)
+ load_ref_decorations();
+
html("<table summary='commit info' class='commit-info'>\n");
@@ -89,2 +92,3 @@ void cgit_print_commit(char *hex)
html_txt(info->subject);
+ show_commit_decorations(commit);
html("</div>");
diff --git a/ui-log.h b/ui-log.h
index 877e40e..6034055 100644
--- a/ui-log.h
+++ b/ui-log.h
@@ -5,2 +5,3 @@ extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep,
char *pattern, char *path, int pager);
+extern void show_commit_decorations(struct commit *commit);