From 9b3fda7414f0a28ce0d40b9d1647ececb579a628 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 25 Oct 2014 10:27:43 -0400 Subject: Change HTML pages to be HTML 5 --- coverage/htmlfiles/index.html | 8 ++++---- coverage/htmlfiles/pyfile.html | 14 +++++++------- coverage/htmlfiles/style.css | 5 ++++- 3 files changed, 15 insertions(+), 12 deletions(-) (limited to 'coverage/htmlfiles') diff --git a/coverage/htmlfiles/index.html b/coverage/htmlfiles/index.html index bea715e..ef4867a 100644 --- a/coverage/htmlfiles/index.html +++ b/coverage/htmlfiles/index.html @@ -1,4 +1,4 @@ - + @@ -12,7 +12,7 @@ - @@ -24,7 +24,7 @@ {{totals.pc_covered_str}}% - + Show keyboard shortcuts
@@ -34,7 +34,7 @@
- + Hide keyboard shortcuts

Hot-keys on this page

diff --git a/coverage/htmlfiles/pyfile.html b/coverage/htmlfiles/pyfile.html index da505a7..38dfb47 100644 --- a/coverage/htmlfiles/pyfile.html +++ b/coverage/htmlfiles/pyfile.html @@ -1,4 +1,4 @@ - + @@ -14,7 +14,7 @@ - @@ -26,7 +26,7 @@ {{nums.pc_covered_str}}% - + Show keyboard shortcuts

{{nums.n_statements}} statements   @@ -42,7 +42,7 @@

- + Hide keyboard shortcuts

Hot-keys on this page

@@ -65,14 +65,14 @@

- +
- -
+ {% for line in lines %}

{{line.number}}

{% endfor %}
+ {% for line in lines %}

{% if line.annotate %}{{line.annotate}}{% endif %}{{line.html}} 

{% endfor %} diff --git a/coverage/htmlfiles/style.css b/coverage/htmlfiles/style.css index 9010af7..038335c 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; } -- cgit v1.2.1