diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-07-26 17:01:37 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-07-26 17:01:37 -0400 |
commit | 2fcfa2f1f13298a24051439cd09f49e3fb014360 (patch) | |
tree | 10f9734649a6e36408fc929565dfb653d7910526 /doc/sample_html/style.css | |
parent | 59531ec98099ebfbb01c8672419b69d0b1501f21 (diff) | |
download | python-coveragepy-git-coverage-4.2.tar.gz |
Latest sample_htmlcoverage-4.2
Diffstat (limited to 'doc/sample_html/style.css')
-rw-r--r-- | doc/sample_html/style.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/sample_html/style.css b/doc/sample_html/style.css index 136cbb82..86b82091 100644 --- a/doc/sample_html/style.css +++ b/doc/sample_html/style.css @@ -2,6 +2,7 @@ /* For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt */ /* CSS styles for coverage.py. */ + /* Page-wide styles */ html, body, h1, h2, h3, p, table, td, th { margin: 0; @@ -321,7 +322,15 @@ td.text { } #index th.headerSortDown, #index th.headerSortUp { border-bottom: 1px solid #000; + white-space: nowrap; + background: #eee; } +#index th.headerSortDown:after { + content: " ↓"; +} +#index th.headerSortUp:after { + content: " ↑"; +} #index td.name, #index th.name { text-align: left; width: auto; |