diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-06-02 18:54:48 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-06-02 18:54:48 +0000 |
commit | dfef5164b49fc79af58ab6e7a595add1b6dc7592 (patch) | |
tree | dc0e85c6b73b8c08a3954cb36aa1e06e0b465264 /misc | |
parent | 7b9a2453d5633bdb31e26d8ad12dcb0512c6c9f8 (diff) | |
download | brdo-dfef5164b49fc79af58ab6e7a595add1b6dc7592.tar.gz brdo-dfef5164b49fc79af58ab6e7a595add1b6dc7592.tar.bz2 |
- Patch #6863 by Kristjan: fixed incorrect table behavior.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/drupal.css | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/misc/drupal.css b/misc/drupal.css index 6d514b607..62a74c942 100644 --- a/misc/drupal.css +++ b/misc/drupal.css @@ -23,7 +23,6 @@ pre, code { } table { border-collapse: collapse; - width: 100%; } th { text-align: left; @@ -34,14 +33,14 @@ th { th.active img { display: inline; } -tr.dark, tr.light { +tr.dark td, tr.light td { background-color: #eee; border-bottom: 1px solid #ccc; } tr.dark td, tr.light td { padding: 0.1em 0.6em; } -td.active { +tr td.active { background-color: #ddd; } |