diff options
author | Jakub Narebski <jnareb@gmail.com> | 2006-08-28 14:48:12 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-28 16:21:34 -0700 |
commit | 6fd92a28ebfcbf5d0fc5b51653e223d4e2e727a6 (patch) | |
tree | 5b0f730c40c469d6c244b290660056d05439a1d8 /gitweb/gitweb.css | |
parent | d50a9398fe9428f94ec7f2081626cc49c938e704 (diff) | |
download | git-6fd92a28ebfcbf5d0fc5b51653e223d4e2e727a6.tar.gz |
gitweb: Add author information to commitdiff view
Add subroutine git_print_authorship to print author and date of
commit, div.author_date style to CSS, and use them in git_commitdiff.
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb/gitweb.css')
-rw-r--r-- | gitweb/gitweb.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gitweb/gitweb.css b/gitweb/gitweb.css index afd9e8a565..eb9fc3804b 100644 --- a/gitweb/gitweb.css +++ b/gitweb/gitweb.css @@ -116,6 +116,13 @@ div.list_head { font-style: italic; } +div.author_date { + padding: 8px; + border: solid #d9d8d1; + border-width: 0px 0px 1px 0px; + font-style: italic; +} + a.list { text-decoration: none; color: #000000; |