diff options
author | Jakub Narebski <jnareb@gmail.com> | 2007-05-16 01:59:55 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-05-16 12:40:06 -0700 |
commit | b211c320eb5d753a7a44a03eccb9a15cfbcc563b (patch) | |
tree | 4e6f37f14af1142fb62b7049d46527c41d2729f8 /gitweb | |
parent | Ensure return value from xread() is always stored into an ssize_t (diff) | |
download | tgif-b211c320eb5d753a7a44a03eccb9a15cfbcc563b.tar.xz |
gitweb: Do not use absolute font sizes
David Kågedal proposed that gitweb should explicitely request
being somewhat smaller than normal, because it has good use for
long lines. However gitweb presents a table with several
columns, so having wider line is OK for it. Therefore explicit
'font-size: small' would make sense. Apparently many people on
the list seem to agree with him.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb')
-rw-r--r-- | gitweb/gitweb.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gitweb/gitweb.css b/gitweb/gitweb.css index b57c8beccb..02623cbb6d 100644 --- a/gitweb/gitweb.css +++ b/gitweb/gitweb.css @@ -1,5 +1,6 @@ body { font-family: sans-serif; + font-size: small; border: solid #d9d8d1; border-width: 1px; margin: 10px; |