summaryrefslogtreecommitdiff
path: root/coverage/htmlfiles/pyfile.html
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2020-06-28 16:23:32 -0400
committerGitHub <noreply@github.com>2020-06-28 16:23:32 -0400
commit978ff8b8acd089b7ecc1ad5c20742bde5d19900e (patch)
tree63d49151eec46ed07441658d136ce95d1c7ead8d /coverage/htmlfiles/pyfile.html
parent1e47b8058828f1f30143c21f53af786f52722360 (diff)
parentbcd571b369d3c7f57bac644136a0c2fbe7f1d78c (diff)
downloadpython-coveragepy-git-978ff8b8acd089b7ecc1ad5c20742bde5d19900e.tar.gz
Merge pull request #931 from vsalvino/darkmode
Add dark mode, and other design changes for the HTML report.
Diffstat (limited to 'coverage/htmlfiles/pyfile.html')
-rw-r--r--coverage/htmlfiles/pyfile.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/coverage/htmlfiles/pyfile.html b/coverage/htmlfiles/pyfile.html
index eb0f99c8..ec0f416f 100644
--- a/coverage/htmlfiles/pyfile.html
+++ b/coverage/htmlfiles/pyfile.html
@@ -33,12 +33,12 @@
<h2 class="stats">
{{nums.n_statements}} statements &nbsp;
- <span class="{{category.run}} shortkey_r button_toggle_run">{{nums.n_executed}} run</span>
- <span class="{{category.mis}} shortkey_m button_toggle_mis">{{nums.n_missing}} missing</span>
- <span class="{{category.exc}} shortkey_x button_toggle_exc">{{nums.n_excluded}} excluded</span>
+ <button type="button" class="{{category.run}} shortkey_r button_toggle_run" title="Toggle lines run">{{nums.n_executed}} run</button>
+ <button type="button" class="{{category.mis}} shortkey_m button_toggle_mis" title="Toggle lines missing">{{nums.n_missing}} missing</button>
+ <button type="button" class="{{category.exc}} shortkey_x button_toggle_exc" title="Toggle lines excluded">{{nums.n_excluded}} excluded</button>
{% if has_arcs %}
- <span class="{{category.par}} shortkey_p button_toggle_par">{{nums.n_partial_branches}} partial</span>
+ <button type="button" class="{{category.par}} shortkey_p button_toggle_par" title="Toggle lines partially run">{{nums.n_partial_branches}} partial</button>
{% endif %}
</h2>
</div>