23 lines
405 B
CSS
23 lines
405 B
CSS
/**
|
|
* @file
|
|
* Table select — replaces implementation of Classy theme.
|
|
*
|
|
* @see tableselect.js
|
|
*/
|
|
|
|
@import "../base/variables.pcss.css";
|
|
|
|
td.checkbox,
|
|
th.checkbox {
|
|
text-align: center;
|
|
}
|
|
[dir="rtl"] td.checkbox,
|
|
[dir="rtl"] th.checkbox {
|
|
/* This is required to win over specificity of [dir="rtl"] td */
|
|
text-align: center;
|
|
}
|
|
|
|
tr.selected td {
|
|
background-color: var(--color-bgblue-active);
|
|
}
|