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 | 660a122bb75d77c4b1b78439230a76056d86c607 (patch) | |
tree | 8ef9ecf5f64a56af22c0af9920f1f8d5a0381ae3 /coverage/htmlfiles | |
parent | 2748fd508364197a3e1a40523e412be9239c8ebc (diff) | |
download | python-coveragepy-git-660a122bb75d77c4b1b78439230a76056d86c607.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 252fbbcb..9a06a2b4 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; |