You are here

tablefield_sort.css in TableField 7.3

Sorting indicator (arrow up/down).

File

css/tablefield_sort.css
View source
  1. /**
  2. * @file
  3. * Sorting indicator (arrow up/down).
  4. */
  5. .tablesorter thead {
  6. cursor: pointer;
  7. }
  8. .headerSortDown:after,
  9. .headerSortUp:after {
  10. content: ' ';
  11. position: relative;
  12. left: 10px;
  13. border: 7px solid transparent;
  14. }
  15. .headerSortDown:after {
  16. top: 10px;
  17. border-top-color: silver;
  18. }
  19. .headerSortUp:after {
  20. bottom: 15px;
  21. border-bottom-color: silver;
  22. }
  23. .headerSortDown,
  24. .headerSortUp {
  25. padding-left: 20px;
  26. opacity: 0.8;
  27. }