diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-10-30 20:17:42 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-10-30 20:17:42 -0400 |
commit | a1148cc249327b3af9563d765a5b6f3c0f2c7ca7 (patch) | |
tree | fa888756d832ad1b9339b49538f4edb45cb6348c /coverage/htmlfiles/index.html | |
parent | 0d0e1544c0b5a7d1937d8d5b9e3c80109c4c6cf7 (diff) | |
download | python-coveragepy-git-a1148cc249327b3af9563d765a5b6f3c0f2c7ca7.tar.gz |
Make the index page display the same in all browsers, and give it a hover effect.
Diffstat (limited to 'coverage/htmlfiles/index.html')
-rw-r--r-- | coverage/htmlfiles/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/htmlfiles/index.html b/coverage/htmlfiles/index.html index 5129c301..03a83cc3 100644 --- a/coverage/htmlfiles/index.html +++ b/coverage/htmlfiles/index.html @@ -17,7 +17,7 @@ <div id='index'>
<table class='index'>
-<tr>
+<tr class='tablehead'>
<th class='name'>Module</th>
<th>statements</th>
<th>run</th>
@@ -28,7 +28,7 @@ <th>coverage</th>
</tr>
{% for file in files %}
-<tr>
+<tr class='file'>
<td class='name'><a href='{{file.html_filename}}'>{{file.cu.name}}</a></td>
<td>{{file.stm}}</td>
<td>{{file.run}}</td>
|