]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fix lingering tables bug
authorMark Otto <markotto@twitter.com>
Mon, 12 Mar 2012 03:03:55 +0000 (20:03 -0700)
committerMark Otto <markotto@twitter.com>
Mon, 12 Mar 2012 03:03:55 +0000 (20:03 -0700)
docs/assets/bootstrap.zip
docs/assets/css/bootstrap.css
less/tables.less

index b0dcb4e0be636fc1128a31d126b45fb532643784..93152343887562ca4120f3dc04adcb5a4e22f174 100644 (file)
Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ
index 6fa86fd952a1771b8677d9a7ee9b34ea73a3e4ff..6754007bdfb7ed37be65c454541dc7a2112f2a28 100644 (file)
@@ -1200,6 +1200,11 @@ table {
 .table-bordered td {
   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 tbody:first-child tr:first-child td:first-child {
   -webkit-border-radius: 4px 0 0 0;
index 22f9a29b90dbecc141938fb1df690e7d958050d3..7111cb806a77271a348b423cebda22d8cc74f19d 100644 (file)
@@ -79,6 +79,7 @@ table {
   thead:first-child tr:first-child th,
   tbody:first-child tr:first-child th,
   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
   thead:first-child tr:first-child th:first-child,