Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Narebski <jnareb@gmail.com>2007-03-24 22:59:13 +0300
committerJunio C Hamano <junkio@cox.net>2007-03-25 09:25:55 +0400
commit4ae89b76252d1c13a6675a2a4e491983946d72ec (patch)
tree1f8e9247f74842d0e38b5070d7ad75fe9ae8ed3a /gitweb/gitweb.css
parent346d5e1835937d701785300717ce34f92609c2b3 (diff)
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/gitweb.css')
-rw-r--r--gitweb/gitweb.css2
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;
}