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 | 7dad73478b4bcaee894cd7c3a725f3e177dd90cf (patch) | |
tree | 89b3c7d874026ab4114d440f54ef952098bf22bc /test | |
parent | fed97bc3dabc3b1af3000f9b842654a3836a96bc (diff) | |
download | python-coveragepy-git-7dad73478b4bcaee894cd7c3a725f3e177dd90cf.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 5290bbd3..b55e4992 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; |