tableselect.pcss.css 405 B

12345678910111213141516171819202122
  1. /**
  2. * @file
  3. * Table select — replaces implementation of Classy theme.
  4. *
  5. * @see tableselect.js
  6. */
  7. @import "../base/variables.pcss.css";
  8. td.checkbox,
  9. th.checkbox {
  10. text-align: center;
  11. }
  12. [dir="rtl"] td.checkbox,
  13. [dir="rtl"] th.checkbox {
  14. /* This is required to win over specificity of [dir="rtl"] td */
  15. text-align: center;
  16. }
  17. tr.selected td {
  18. background-color: var(--color-bgblue-active);
  19. }