gitweb: Add invisible hyperlink to from-file/to-file diff header
Change replacing hashes as from-file/to-file with filenames from difftree to adding invisible (except underlining on hover/mouseover) hyperlink to from-file/to-file blob. /dev/null as from-file or to-file is not changed (is not hyperlinked). This makes two-file from-file/to-file unified diff header parsing in git_patchset_body more generic, and not only for legacy blobdiffs. Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
committed by
Junio C Hamano
parent
e4e4f82545
commit
ef10ee877f
@ -273,11 +273,21 @@ td.mode {
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
div.diff a.list {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
div.diff a.list:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
div.diff.to_file a.list,
|
||||
div.diff.to_file,
|
||||
div.diff.add {
|
||||
color: #008800;
|
||||
}
|
||||
|
||||
div.diff.from_file a.list,
|
||||
div.diff.from_file,
|
||||
div.diff.rem {
|
||||
color: #cc0000;
|
||||
|
||||
Reference in New Issue
Block a user