diff options
Diffstat (limited to 'tests/gold/html/styled/style.css')
-rw-r--r-- | tests/gold/html/styled/style.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/gold/html/styled/style.css b/tests/gold/html/styled/style.css index 910a779e..3b4643a1 100644 --- a/tests/gold/html/styled/style.css +++ b/tests/gold/html/styled/style.css @@ -278,13 +278,13 @@ kbd { border: 1px solid black; border-color: #888 #333 #333 #888; padding: .1em @media (prefers-color-scheme: dark) { #index th:hover { background: #333; } } -#index th.headerSortDown, #index th.headerSortUp { white-space: nowrap; background: #eee; } +#index th[aria-sort="ascending"], #index th[aria-sort="descending"] { white-space: nowrap; background: #eee; padding-left: .5em; } -@media (prefers-color-scheme: dark) { #index th.headerSortDown, #index th.headerSortUp { background: #333; } } +@media (prefers-color-scheme: dark) { #index th[aria-sort="ascending"], #index th[aria-sort="descending"] { background: #333; } } -#index th.headerSortDown:after { content: " ↑"; } +#index th[aria-sort="ascending"]::after { content: "↑"; } -#index th.headerSortUp:after { content: " ↓"; } +#index th[aria-sort="descending"]::after { content: "↓"; } #index td.name a { text-decoration: none; color: inherit; } |