tablesort-indicator.css 568 B

1234567891011121314151617181920212223242526
  1. /**
  2. * @file
  3. * Tablesort indicator styles.
  4. */
  5. .tablesort {
  6. float: right; /* LTR */
  7. margin-top: 5px;
  8. width: 10px;
  9. height: 10px;
  10. }
  11. [dir="rtl"] .tablesort {
  12. float: left;
  13. }
  14. .tablesort--asc {
  15. background-image: url(../../../../misc/icons/004875/twistie-down.svg);
  16. }
  17. a:hover .tablesort--asc {
  18. background-image: url(../../../../misc/icons/008ee6/twistie-down.svg);
  19. }
  20. .tablesort--desc {
  21. background-image: url(../../../../misc/icons/004875/twistie-up.svg);
  22. }
  23. a:hover .tablesort--desc {
  24. background-image: url(../../../../misc/icons/008ee6/twistie-up.svg);
  25. }