tablesort.module.css 365 B

12345678910111213141516171819
  1. /**
  2. * @file
  3. * Table sort indicator.
  4. *
  5. * @see tablesort-indicator.html.twig
  6. */
  7. .tablesort {
  8. width: 16px;
  9. height: 16px;
  10. display: inline-block;
  11. background-size: 100%;
  12. }
  13. .tablesort--asc {
  14. background-image: url(../../../../misc/icons/787878/twistie-down.svg);
  15. }
  16. .tablesort--desc {
  17. background-image: url(../../../../misc/icons/787878/twistie-up.svg);
  18. }