diff options
author | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2019-09-02 05:21:55 +0000 |
---|---|---|
committer | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2019-09-02 05:21:55 +0000 |
commit | a6150a55ca5012735ec5ebbd07c3632d2f2f0294 (patch) | |
tree | dfde3aee2f67ad6456cb29f81023a6ecbfad939e /pub/skins | |
parent | 4f54738f46f47fce6f1ed13c965af25bb8869b32 (diff) | |
download | pmwiki.svn-a6150a55ca5012735ec5ebbd07c3632d2f2f0294.tar.bz2 |
Sortable fix reversed arrows (down arrow when descending).
git-svn-id: svn://pmwiki.org/pmwiki/trunk@3509 524c5546-5005-0410-9a3e-e25e191bd360
Diffstat (limited to 'pub/skins')
-rw-r--r-- | pub/skins/pmwiki-responsive/skin.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pub/skins/pmwiki-responsive/skin.css b/pub/skins/pmwiki-responsive/skin.css index 1c328c9d..85c5ebfa 100644 --- a/pub/skins/pmwiki-responsive/skin.css +++ b/pub/skins/pmwiki-responsive/skin.css @@ -358,12 +358,12 @@ table.sortable th::after { content: "\00A0\025B8"; } -table.sortable th.dir-d::after { +table.sortable th.dir-u::after { color: inherit; content: "\00A0\025BE"; } -table.sortable th.dir-u::after { +table.sortable th.dir-d::after { color: inherit; content: "\00A0\025B4"; } |