You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
302 B
19 lines
302 B
/** |
|
* @file |
|
* Table select behavior. |
|
* |
|
* @see tableselect.js |
|
*/ |
|
|
|
tr.selected td { |
|
background: #ffc; |
|
} |
|
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; |
|
}
|
|
|