diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-31 11:08:30 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-31 11:08:30 -0500 |
| commit | dd2fe2b40497470bf1747c558b73c8baeee53bfe (patch) | |
| tree | 0e1cf941d4fd96a240a606d322b53f5af3fd2614 | |
| parent | b920b36476caa848e1773063e8bdc15781ff32c9 (diff) | |
| download | python-coveragepy-dd2fe2b40497470bf1747c558b73c8baeee53bfe.tar.gz | |
Use Consolas in the HTML report
| -rw-r--r-- | CHANGES.rst | 3 | ||||
| -rw-r--r-- | coverage/htmlfiles/style.css | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 322e723..6d3afb6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -17,6 +17,9 @@ Unreleased page, giving an overview of where the missed lines are. Thanks, Dmitry Shishov. +- The HTML report now uses different monospaced fonts, favoring Consolas over + Courier. + Version 4.1b2 --- 2016-01-23 ---------------------------- diff --git a/coverage/htmlfiles/style.css b/coverage/htmlfiles/style.css index ee14f9e..f999eb7 100644 --- a/coverage/htmlfiles/style.css +++ b/coverage/htmlfiles/style.css @@ -64,7 +64,7 @@ a.nav:hover { #source { padding: 1em; - font-family: "courier new", monospace; + font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; } .indexfile #footer { |
