Created
August 8, 2018 12:44
-
-
Save bergwerf/8a10c74b47906d188f3c4faca427f6c3 to your computer and use it in GitHub Desktop.
A brief attempt at a new minimalist LCOV genhtml theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
font-family: monospace; | |
} | |
.title { | |
font-size: 1em; | |
font-weight: bold; | |
text-decoration: underline; | |
padding: 1em; | |
} | |
.headerItem { | |
white-space: nowrap; | |
padding-right: 2em; | |
font-weight: bold; | |
} | |
.headerCovTableHead { | |
font-weight: bold; | |
} | |
.tableHead { | |
font-weight: bold; | |
line-height: 2em; | |
} | |
center > table > tbody > tr > td:nth-child(3) { | |
text-align: right; | |
padding-right: 1em; | |
} | |
center > table > tbody > tr > td:nth-child(4) { | |
text-align: center; | |
} | |
/* For Dart coverage there is no function information */ | |
.tableHead:nth-child(3), | |
center > table > tbody > tr > td:nth-child(5) { | |
display: none; | |
} | |
.versionInfo { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment