diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-23 21:47:42 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-23 21:48:34 -0400 |
commit | 4902b6c53740c8e871bb03e69e4345c5cafad96e (patch) | |
tree | 3155010a5d932cb7ba836fe8c306d2d20355fa31 /coverage/htmlfiles/style.css | |
parent | 91ace30b1095f1a3b5022f9a70b3212385b3a0e6 (diff) | |
download | python-coveragepy-git-4902b6c53740c8e871bb03e69e4345c5cafad96e.tar.gz |
fix(html): ariaSort isn't supported in Firefox yet
The HTML report index page wasn't indicating the sort order properly
Diffstat (limited to 'coverage/htmlfiles/style.css')
-rw-r--r-- | coverage/htmlfiles/style.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/htmlfiles/style.css b/coverage/htmlfiles/style.css index 3b4643a1..cca6f11f 100644 --- a/coverage/htmlfiles/style.css +++ b/coverage/htmlfiles/style.css @@ -282,9 +282,9 @@ kbd { border: 1px solid black; border-color: #888 #333 #333 #888; padding: .1em @media (prefers-color-scheme: dark) { #index th[aria-sort="ascending"], #index th[aria-sort="descending"] { background: #333; } } -#index th[aria-sort="ascending"]::after { content: "↑"; } +#index th[aria-sort="ascending"]::after { font-family: sans-serif; content: " ↑"; } -#index th[aria-sort="descending"]::after { content: "↓"; } +#index th[aria-sort="descending"]::after { font-family: sans-serif; content: " ↓"; } #index td.name a { text-decoration: none; color: inherit; } |