diff options
author | Ned Batchelder <nedbat@gmail.com> | 2014-10-20 18:35:26 -0400 |
---|---|---|
committer | Ned Batchelder <nedbat@gmail.com> | 2014-10-20 18:35:26 -0400 |
commit | 2fda349bba5e55240e4f8b2cedf7ee29d60207b2 (patch) | |
tree | 51a7eda6cf8d9e61adcb3ca791f9917065125085 /coverage/htmlfiles/style.css | |
parent | cd015c45c278aca757263746ed2e64c46d578ddd (diff) | |
parent | ad4c7f3a5194f6966454d534f02e6b02633fa370 (diff) | |
download | python-coveragepy-git-2fda349bba5e55240e4f8b2cedf7ee29d60207b2.tar.gz |
Merged in dannya/coverage.py_2 (pull request #34)
Rework of my pull request #18:
Diffstat (limited to 'coverage/htmlfiles/style.css')
-rw-r--r-- | coverage/htmlfiles/style.css | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/coverage/htmlfiles/style.css b/coverage/htmlfiles/style.css index 811c6401..0c29711a 100644 --- a/coverage/htmlfiles/style.css +++ b/coverage/htmlfiles/style.css @@ -31,6 +31,14 @@ p { table { border-collapse: collapse; } +table tr.hidden { + display: none !important; + } + +p#no_rows { + display: none; + font-size: 1.2em; + } a.nav { text-decoration: none; @@ -80,6 +88,16 @@ a.nav:hover { h1 { font-size: 1.25em; + display: inline-block; +} + +form#filter_container { + display: inline-block; + float: right; + margin: 0 3em 0 0; +} +form#filter_container input { + width: 24em; } h2.stats { @@ -130,6 +148,7 @@ h2.stats { /* Help panel */ #keyboard_icon { float: right; + margin: 5px; cursor: pointer; } @@ -288,9 +307,11 @@ td.text { text-decoration: underline; color: #000; } -#index tr.total { +#index tr.total, +#index tr.total_dynamic { } -#index tr.total td { +#index tr.total td, +#index tr.total_dynamic td { font-weight: bold; border-top: 1px solid #ccc; border-bottom: none; |