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.scss | |
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.scss')
-rw-r--r-- | coverage/htmlfiles/style.scss | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/coverage/htmlfiles/style.scss b/coverage/htmlfiles/style.scss index e4826f31..75d90c74 100644 --- a/coverage/htmlfiles/style.scss +++ b/coverage/htmlfiles/style.scss @@ -659,10 +659,12 @@ $border-indicator-width: .2em; padding-left: .5em; } &[aria-sort="ascending"]::after { - content: "↑"; + font-family: sans-serif; + content: " ↑"; } &[aria-sort="descending"]::after { - content: "↓"; + font-family: sans-serif; + content: " ↓"; } } td.name a { |