8186460: Fix stylesheet to better display multi-row headers in "striped" tables

Reviewed-by: bpatel
This commit is contained in:
Jonathan Gibbons 2017-08-23 10:53:57 -07:00
parent 1a42e4f2ec
commit 1c0fce9964

View File

@ -854,6 +854,8 @@ table.striped {
}
table.striped > thead {
background-color: #DDD;
}
table.striped > thead > tr > th, table.striped > thead > tr > td {
border: 1px solid black;
}
table.striped > tbody > tr:nth-child(even) {
@ -862,8 +864,7 @@ table.striped > tbody > tr:nth-child(even) {
table.striped > tbody > tr:nth-child(odd) {
background-color: #FFF
}
table.striped > thead > tr > th, table.striped > tbody > tr > th,
table.striped > tbody > tr > td, table.striped > tbody > tr > td {
table.striped > tbody > tr > th, table.striped > tbody > tr > td {
border-left: 1px solid black;
border-right: 1px solid black;
}