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.0.6~6 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/4ae89b76252d1c13a6675a2a4e491983946d72ec?hp=--cc 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 --- 4ae89b76252d1c13a6675a2a4e491983946d72ec diff --git a/gitweb/gitweb.css b/gitweb/gitweb.css index 7177c6e86b..5e40292404 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; }