You are here

tableselect.css in Drupal 10

Table select behavior.

See also

tableselect.js

File

core/themes/classy/css/components/tableselect.css
View source
  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. }