Skip to content

Commit cacc213

Browse files
committed
Nesting tables
* Add simple test to css-tests.html * Scope .table-bordered to immediate children th/td elements only
1 parent b9292ff commit cacc213

File tree

4 files changed

+70
-38
lines changed

4 files changed

+70
-38
lines changed

docs/assets/css/bootstrap.css

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2044,31 +2044,31 @@ table {
20442044
border-top: 0;
20452045
}
20462046

2047-
.table-bordered thead:first-child tr:first-child th:first-child,
2048-
.table-bordered tbody:first-child tr:first-child td:first-child {
2047+
.table-bordered thead:first-child tr:first-child > th:first-child,
2048+
.table-bordered tbody:first-child tr:first-child > td:first-child {
20492049
-webkit-border-top-left-radius: 4px;
20502050
border-top-left-radius: 4px;
20512051
-moz-border-radius-topleft: 4px;
20522052
}
20532053

2054-
.table-bordered thead:first-child tr:first-child th:last-child,
2055-
.table-bordered tbody:first-child tr:first-child td:last-child {
2054+
.table-bordered thead:first-child tr:first-child > th:last-child,
2055+
.table-bordered tbody:first-child tr:first-child > td:last-child {
20562056
-webkit-border-top-right-radius: 4px;
20572057
border-top-right-radius: 4px;
20582058
-moz-border-radius-topright: 4px;
20592059
}
20602060

2061-
.table-bordered thead:last-child tr:last-child th:first-child,
2062-
.table-bordered tbody:last-child tr:last-child td:first-child,
2063-
.table-bordered tfoot:last-child tr:last-child td:first-child {
2061+
.table-bordered thead:last-child tr:last-child > th:first-child,
2062+
.table-bordered tbody:last-child tr:last-child > td:first-child,
2063+
.table-bordered tfoot:last-child tr:last-child > td:first-child {
20642064
-webkit-border-bottom-left-radius: 4px;
20652065
border-bottom-left-radius: 4px;
20662066
-moz-border-radius-bottomleft: 4px;
20672067
}
20682068

2069-
.table-bordered thead:last-child tr:last-child th:last-child,
2070-
.table-bordered tbody:last-child tr:last-child td:last-child,
2071-
.table-bordered tfoot:last-child tr:last-child td:last-child {
2069+
.table-bordered thead:last-child tr:last-child > th:last-child,
2070+
.table-bordered tbody:last-child tr:last-child > td:last-child,
2071+
.table-bordered tfoot:last-child tr:last-child > td:last-child {
20722072
-webkit-border-bottom-right-radius: 4px;
20732073
border-bottom-right-radius: 4px;
20742074
-moz-border-radius-bottomright: 4px;

0 commit comments

Comments
 (0)