Fix table vertical border

This commit is contained in:
Naoki Takezoe
2015-12-10 01:16:17 +09:00
parent 94a12cd28c
commit 27dcc2ef48
2 changed files with 10 additions and 1 deletions

View File

@@ -1486,6 +1486,15 @@ th {
.table-bordered > tfoot > tr > td { .table-bordered > tfoot > tr > td {
border: 1px solid #dddddd; border: 1px solid #dddddd;
border-bottom: 0; border-bottom: 0;
border-right: 0;
}
.table-bordered > thead > tr > th:nth-last-of-type(1),
.table-bordered > tbody > tr > th:nth-last-of-type(1),
.table-bordered > tfoot > tr > th:nth-last-of-type(1),
.table-bordered > thead > tr > td:nth-last-of-type(1),
.table-bordered > tbody > tr > td:nth-last-of-type(1),
.table-bordered > tfoot > tr > td:nth-last-of-type(1) {
border-right: 1px solid #dddddd;
} }
.table-bordered > thead:first-child > tr:first-child > th, .table-bordered > thead:first-child > tr:first-child > th,
.table-bordered > thead:first-child > tr:first-child > td { .table-bordered > thead:first-child > tr:first-child > td {

File diff suppressed because one or more lines are too long