diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-10-25 10:27:43 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-10-25 10:27:43 -0400 |
commit | 9240e30ecb028faba4577c3d9e8055638f55db53 (patch) | |
tree | 7e8b98b718a589e2c64ae9e5f694bca6da43d66d /coverage/htmlfiles/style.css | |
parent | 0342078b0bee470cb8670f1d69008015fd977d9c (diff) | |
download | python-coveragepy-git-9240e30ecb028faba4577c3d9e8055638f55db53.tar.gz |
Change HTML pages to be HTML 5
Diffstat (limited to 'coverage/htmlfiles/style.css')
-rw-r--r-- | coverage/htmlfiles/style.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/coverage/htmlfiles/style.css b/coverage/htmlfiles/style.css index 9010af76..038335c1 100644 --- a/coverage/htmlfiles/style.css +++ b/coverage/htmlfiles/style.css @@ -1,6 +1,6 @@ /* CSS styles for Coverage. */ /* Page-wide styles */ -html, body, h1, h2, h3, p, td, th { +html, body, h1, h2, h3, p, table, td, th { margin: 0; padding: 0; border: 0; @@ -31,6 +31,9 @@ p { table { border-collapse: collapse; } +td { + vertical-align: top; +} table tr.hidden { display: none !important; } |