Commit 2e52946f authored by Mark Otto's avatar Mark Otto
Browse files

fix lingering tables bug

parent 4109c62c
Showing with 6 additions and 0 deletions
+6 -0
No preview for this file type
...@@ -1200,6 +1200,11 @@ table { ...@@ -1200,6 +1200,11 @@ table {
.table-bordered td { .table-bordered td {
border-left: 1px solid #dddddd; border-left: 1px solid #dddddd;
} }
.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
border-top: 0;
}
.table-bordered thead:first-child tr:first-child th:first-child, .table-bordered thead:first-child tr:first-child th:first-child,
.table-bordered tbody:first-child tr:first-child td:first-child { .table-bordered tbody:first-child tr:first-child td:first-child {
-webkit-border-radius: 4px 0 0 0; -webkit-border-radius: 4px 0 0 0;
......
...@@ -79,6 +79,7 @@ table { ...@@ -79,6 +79,7 @@ table {
thead:first-child tr:first-child th, thead:first-child tr:first-child th,
tbody:first-child tr:first-child th, tbody:first-child tr:first-child th,
tbody:first-child tr:first-child td { tbody:first-child tr:first-child td {
border-top: 0;
} }
// For first th or td in the first row in the first thead or tbody // For first th or td in the first row in the first thead or tbody
thead:first-child tr:first-child th:first-child, thead:first-child tr:first-child th:first-child,
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment