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-Tag: v1.5.1-rc2~5^2~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4ae89b76252d1c13a6675a2a4e491983946d72ec;p=git.git 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/gitweb.css b/gitweb/gitweb.css index 7177c6e86..5e4029240 100644 --- a/gitweb/gitweb.css +++ b/gitweb/gitweb.css @@ -107,7 +107,7 @@ span.age { font-style: italic; } -div.page_body span.signoff { +span.signoff { color: #888888; }