Issue #2395853 by LewisNyman, Manjit.Singh, nlisgo, pjbaert, Branislav Bujisic, pguillard, gavin.hughes, onelittlebecca, alisonjo2786, camoa, DickJohnson, manmohandream, davidhernandez, kgoel: Split system.module.css and system.theme.css files into SMACSS style components
2015-08-07 11:39:17 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Table select behavior.
|
|
|
|
*
|
|
|
|
* @see tableselect.js
|
|
|
|
*/
|
|
|
|
|
|
|
|
tr.selected td {
|
|
|
|
background: #ffc;
|
|
|
|
}
|
|
|
|
td.checkbox,
|
|
|
|
th.checkbox {
|
|
|
|
text-align: center;
|
|
|
|
}
|
Issue #2396473 by herom, Aunion, pjbaert, Manjit.Singh, Dhorkiy, b0unty, prabhurajn654, Dom., Gábor Hojtsy, LewisNyman, idebr: Add missing RTL rules to System CSS
2015-10-05 06:01:45 +00:00
|
|
|
[dir="rtl"] td.checkbox,
|
|
|
|
[dir="rtl"] th.checkbox {
|
|
|
|
/* This is required to win over specificity of [dir="rtl"] td */
|
|
|
|
text-align: center;
|
|
|
|
}
|