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 /tests/gold/html/styled | |
| 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 'tests/gold/html/styled')
| -rw-r--r-- | tests/gold/html/styled/style.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gold/html/styled/style.css b/tests/gold/html/styled/style.css index 3b4643a1..cca6f11f 100644 --- a/tests/gold/html/styled/style.css +++ b/tests/gold/html/styled/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; } |
