Created
December 17, 2020 04:26
-
-
Save joshuahhh/40f22590fc98797a1ec2fb76feecdc4f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
css for basic tilt-to-sort | |
works on wikipedia & other sites that use "tablesorter" jquery plugin | |
use https://stylebot.dev/ (or something like that) to apply it automatically | |
*/ | |
th.headerSort { | |
background-image: none !important; | |
padding-right: 0.4em !important; | |
transition: transform 0.3s; | |
transform: rotate(0deg); | |
} | |
th.headerSortDown { | |
transform: rotate(10deg); | |
} | |
th.headerSortUp { | |
transform: rotate(-10deg); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment