diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-03-12 20:31:02 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-03-12 20:31:02 +0000 |
commit | 4c7bd41a748494c20509b562acb27920a8d71ca5 (patch) | |
tree | 8c2c4419b885edb9f54038ce3dbb6816fd1f6a2c | |
parent | e1cd7e0836469602db5a47dd17df1489c05d262f (diff) | |
download | brdo-4c7bd41a748494c20509b562acb27920a8d71ca5.tar.gz brdo-4c7bd41a748494c20509b562acb27920a8d71ca5.tar.bz2 |
- Made the xtemplate theme support the td.dark and tr.light tags emitted
by the table rendering functions.
- Made the font-size in the sidebar a bit smaller to avoid excessive
wrapping. Requested by Al.
-rw-r--r-- | themes/xtemplate/xtemplate.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/themes/xtemplate/xtemplate.css b/themes/xtemplate/xtemplate.css index 0d5020921..5a5944413 100644 --- a/themes/xtemplate/xtemplate.css +++ b/themes/xtemplate/xtemplate.css @@ -9,6 +9,12 @@ body { body { font-size: 85%; } +tr.dark { + background-color: #ddd; +} +tr.light { + background-color: #fff; +} h1 { font-size: 1.2em; } @@ -97,6 +103,7 @@ img { } #sidebar { background-color: #ddd; + font-size: .9em; } #footer { background-color: #eee; |