logo

blog

My website can't be that messy, right? git clone https://hacktivis.me/git/blog.git

sorttable.css (468B)


  1. table.sortable th.made_sortable {
  2. cursor: pointer;
  3. }
  4. table.sortable th.made_sortable:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort)::after {
  5. content: "⭥";
  6. opacity: 0.5;
  7. }
  8. table.sortable th.made_sortable.sorttable_sorted:not(.sorttable_sorted_reverse):not(.sorttable_nosort)::after {
  9. content: "⭣";
  10. }
  11. table.sortable th.made_sortable.sorttable_sorted_reverse:not(.sorttable_sorted):not(.sorttable_nosort)::after {
  12. content: "⭡";
  13. }