diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-01-24 16:25:41 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-01-24 16:25:41 +0000 |
commit | c3d70557a4abbb1ab2749ffa90242a544c57d4c4 (patch) | |
tree | 3ba3b777c4c2587cc46dbe21fbf63f80f1bfc03f /themes | |
parent | 2aa8036057d14d939ed1533ad89809d7bc941274 (diff) | |
download | brdo-c3d70557a4abbb1ab2749ffa90242a544c57d4c4.tar.gz brdo-c3d70557a4abbb1ab2749ffa90242a544c57d4c4.tar.bz2 |
- Fixed table width.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/xtemplate/xtemplate.css | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/themes/xtemplate/xtemplate.css b/themes/xtemplate/xtemplate.css index 5077575ac..b6f59f23d 100644 --- a/themes/xtemplate/xtemplate.css +++ b/themes/xtemplate/xtemplate.css @@ -60,9 +60,7 @@ pre { } table { /* make <td> sizes relative to body size! */ - font-size: 1em; - width: 100%; -} + font-size: 1em; .form-item { margin-top: 1em; } @@ -272,9 +270,18 @@ table { padding: 1em 1em 1em 0; border-bottom: 1px solid #bbb; } +#forum table { + width: 100%; +} #forum td { padding: 0.5em 0.5em 0.5em 0.5em; } +#forum td.forum, #forum td.posts { + background-color: #eee; +} +#forum td.topics, #forum td.last-reply { + background-color: #ddd; +} #forum td.container { background-color: #ccc; } |