From: Jakub Narebski Date: Sat, 24 Mar 2007 19:59:13 +0000 (+0100) Subject: gitweb: Fix not marking signoff lines in "log" view X-Git-Url: https://git.ladys.computer/Gitweb/commitdiff_plain/46be2abf073ca4b4a16d993e9b9f2db55e5d1073edb5eb44f167d3fe7470a307 gitweb: Fix not marking signoff lines in "log" view The CSS selector for signoff lines style was too strict: in the "log" view the commit message is not encompassed in container "page_body" div. Signed-off-by: Jakub Narebski Signed-off-by: Junio C Hamano --- diff --git a/gitweb.css b/gitweb.css index 6ca83f0..5ff0317 100644 --- a/gitweb.css +++ b/gitweb.css @@ -107,7 +107,7 @@ span.age { font-style: italic; } -div.page_body span.signoff { +span.signoff { color: #888888; }