tablesort-indicator.css

Same filename in this branch
  1. 9 core/themes/claro/css/components/tablesort-indicator.css
  2. 9 core/themes/bartik/css/components/tablesort-indicator.css
Same filename in other branches
  1. 8.9.x core/themes/seven/css/components/tablesort-indicator.css
  2. 8.9.x core/themes/claro/css/components/tablesort-indicator.css
  3. 8.9.x core/themes/bartik/css/components/tablesort-indicator.css
  4. 10 core/themes/claro/css/components/tablesort-indicator.css
  5. 11.x core/themes/claro/css/components/tablesort-indicator.css

Tablesort indicator styles.

File

core/themes/seven/css/components/tablesort-indicator.css

View source
  1. /**
  2. * @file
  3. * Tablesort indicator styles.
  4. */
  5. .tablesort {
  6. float: right; /* LTR */
  7. width: 10px;
  8. height: 10px;
  9. margin-top: 5px;
  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. }

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.