diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-10-25 09:39:28 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-10-25 09:39:28 -0400 |
commit | 02b4d71cf2d9431d4affd16713df7ded77eaa034 (patch) | |
tree | ee22c3a9343032853f0e9fd41755d6a779e1e21c /test | |
parent | 82282aac7b8f8c963bb94e7a40a0aa1d05cb6c87 (diff) | |
download | python-coveragepy-02b4d71cf2d9431d4affd16713df7ded77eaa034.tar.gz |
Stupid simplistic not working yet branch reporting in HTML
Diffstat (limited to 'test')
-rw-r--r-- | test/farm/html/gold_a/style.css | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/test/farm/html/gold_a/style.css b/test/farm/html/gold_a/style.css index 5290bbd..b55e499 100644 --- a/test/farm/html/gold_a/style.css +++ b/test/farm/html/gold_a/style.css @@ -1,4 +1,4 @@ -/* CSS styles for coverage.py */ +/* CSS styles for Coverage. */ /* Page-wide styles */ html, body, h1, h2, h3, p, td, th { margin: 0; @@ -54,6 +54,11 @@ a.nav:hover { } #footer { + margin: 1em 3em; + } + +#footer .content { + padding: 0; font-size: 85%; font-family: verdana, sans-serif; color: #666666; @@ -65,7 +70,7 @@ a.nav:hover { } /* Header styles */ -.content { +#header .content { padding: 1em 3em; } @@ -120,10 +125,28 @@ td.text { background: #eeeeee; border-left: 2px solid #808080; } +.text p.par { + background: #ffffdd; + border-left: 2px solid #ffff00; + } .text p.hide { background: inherit; } +/* Syntax coloring */ +.text .com { + color: green; + font-style: italic; + line-height: 1px; + } +.text .key { + font-weight: bold; + line-height: 1px; + } +.text .str { + color: #000080; + } + /* index styles */ #index td, #index th { text-align: right; |