summaryrefslogtreecommitdiff
path: root/coverage/htmlfiles/style.scss
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-10-23 21:47:42 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-10-23 21:48:34 -0400
commit4902b6c53740c8e871bb03e69e4345c5cafad96e (patch)
tree3155010a5d932cb7ba836fe8c306d2d20355fa31 /coverage/htmlfiles/style.scss
parent91ace30b1095f1a3b5022f9a70b3212385b3a0e6 (diff)
downloadpython-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.scss6
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 {