You are here

tableselect.css in Drupal 10

Table select — replaces implementation of Classy theme.

See also

tableselect.js

File

core/themes/claro/css/components/tableselect.css
View source
  1. /*
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/3084859
  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: var(--color-bgblue-active);
  24. }