Skip to content

Instantly share code, notes, and snippets.

@joshuahhh
Created December 17, 2020 04:26
Show Gist options
  • Save joshuahhh/40f22590fc98797a1ec2fb76feecdc4f to your computer and use it in GitHub Desktop.
Save joshuahhh/40f22590fc98797a1ec2fb76feecdc4f to your computer and use it in GitHub Desktop.
/*
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