diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-03-20 16:52:39 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-03-20 16:52:39 -0400 |
commit | 1a67a1f8e08acaf6b28903ae812a7af8b40d846e (patch) | |
tree | 6a3a38ca204c026a6c6deda6abfcfb4911a6371c /coverage/htmlfiles | |
parent | f3b018380b32e1e75a00ac5b1b730c0c67ab060c (diff) | |
download | python-coveragepy-1a67a1f8e08acaf6b28903ae812a7af8b40d846e.tar.gz |
Not sure why I changed these from inherit to normal last week (something to do with IE and the styling of the linked line numbers). 'normal' made the footer not be italic, and putting it back to 'inherit' doesn't seem to break anything.
Diffstat (limited to 'coverage/htmlfiles')
-rw-r--r-- | coverage/htmlfiles/style.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/htmlfiles/style.css b/coverage/htmlfiles/style.css index 252fbbc..9a06a2b 100644 --- a/coverage/htmlfiles/style.css +++ b/coverage/htmlfiles/style.css @@ -5,8 +5,8 @@ html, body, h1, h2, h3, p, td, th { padding: 0; border: 0; outline: 0; - font-weight: normal; - font-style: normal; + font-weight: inherit; + font-style: inherit; font-size: 100%; font-family: inherit; vertical-align: baseline; |