tableselect.css 491 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/2815083
  5. * @preserve
  6. */
  7. /**
  8. * @file
  9. * Table select — replaces implementation of Classy theme.
  10. *
  11. * @see tableselect.js
  12. */
  13. td.checkbox,
  14. th.checkbox {
  15. text-align: center;
  16. }
  17. [dir="rtl"] td.checkbox,
  18. [dir="rtl"] th.checkbox {
  19. /* This is required to win over specificity of [dir="rtl"] td */
  20. text-align: center;
  21. }
  22. tr.selected td {
  23. background-color: #e6ecf8;
  24. }