diff options
author | Jakub Narebski <jnareb@gmail.com> | 2007-03-24 20:59:13 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-03-24 22:25:55 -0700 |
commit | 4ae89b76252d1c13a6675a2a4e491983946d72ec (patch) | |
tree | 1f8e9247f74842d0e38b5070d7ad75fe9ae8ed3a /gitweb | |
parent | 346d5e1835937d701785300717ce34f92609c2b3 (diff) | |
download | git-4ae89b76252d1c13a6675a2a4e491983946d72ec.tar.gz |
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 <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb')
-rw-r--r-- | gitweb/gitweb.css | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |