tableselect.css 302 B

12345678910111213141516171819
  1. /**
  2. * @file
  3. * Table select behavior.
  4. *
  5. * @see tableselect.js
  6. */
  7. tr.selected td {
  8. background: #ffc;
  9. }
  10. td.checkbox,
  11. th.checkbox {
  12. text-align: center;
  13. }
  14. [dir="rtl"] td.checkbox,
  15. [dir="rtl"] th.checkbox {
  16. /* This is required to win over specificity of [dir="rtl"] td */
  17. text-align: center;
  18. }