diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2018-11-14 07:16:03 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-11-14 07:16:16 -0500 |
| commit | ddb60a34648d9b580fe83e6cfd47cefc6462ebaf (patch) | |
| tree | 74fdc5e7885068744f6c09c444a115f97b4d3daf /tests/farm/html | |
| parent | bfb166f1b6f2a67777ddc5bfa692bf1308413dc5 (diff) | |
| download | python-coveragepy-git-ddb60a34648d9b580fe83e6cfd47cefc6462ebaf.tar.gz | |
Compare the css files exactly
Diffstat (limited to 'tests/farm/html')
| -rw-r--r-- | tests/farm/html/gold_styled/style.css | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/farm/html/gold_styled/style.css b/tests/farm/html/gold_styled/style.css index 0cd0cce1..14592865 100644 --- a/tests/farm/html/gold_styled/style.css +++ b/tests/farm/html/gold_styled/style.css @@ -2,6 +2,7 @@ /* For details: https://github.com/nedbat/coveragepy/blob/master/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; @@ -356,10 +365,11 @@ td.text { height: 100%; background: white; border-left: 1px solid #eee; + will-change: transform; /* for faster scrolling of fixed element in Chrome */ } #scroll_marker .marker { - background: #ffdddd; + background: #eedddd; position: absolute; min-height: 3px; width: 100%; |
