diff options
author | Jakub Narebski <jnareb@gmail.com> | 2006-08-14 02:18:33 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-14 17:40:50 -0700 |
commit | 4a4a1a53d1c4a272d4cf0d53116896d057174671 (patch) | |
tree | 8a2d10105cbcf400b77251779db108c837bec6cf /gitweb/gitweb.css | |
parent | d5aa50de621220d7451a5d497479327d2a608009 (diff) | |
download | git-4a4a1a53d1c4a272d4cf0d53116896d057174671.tar.gz git-4a4a1a53d1c4a272d4cf0d53116896d057174671.tar.xz |
gitweb: Separate printing difftree in git_commit into git_difftree_body
Separate printing difftree in git_commit into separate
git_difftree_body subroutine. Add support for "C" (copied) status. For
"M" and "C" add parameter 'fp' (filename parent) to the "diff" link;
currently not supported by git_blobdiff ("blobdiff" action).
Reindented, realigned, added comments.
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 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gitweb/gitweb.css b/gitweb/gitweb.css index 21ce99cc9..901389585 100644 --- a/gitweb/gitweb.css +++ b/gitweb/gitweb.css @@ -226,6 +226,10 @@ table.diff_tree span.file_status.mode_chnge { color: #777777; } +table.diff_tree span.file_status.copied { + color: #70a070; +} + /* age2: 60*60*24*2 <= age */ table.project_list td.age2, table.blame td.age2 { font-style: italic; |