]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
update preventing double border line for bordered tables by account for th elements...
authorMark Otto <markdotto@gmail.com>
Sun, 15 Jan 2012 00:50:36 +0000 (16:50 -0800)
committerMark Otto <markdotto@gmail.com>
Sun, 15 Jan 2012 00:50:36 +0000 (16:50 -0800)
bootstrap.css
bootstrap.min.css
lib/tables.less

index 1fc0e9edd0d3831e455d040d727ea4d107813b83..dd0c028b8ee6d188c454af69d3ce0f4bfd6bc1fc 100644 (file)
@@ -6,7 +6,7 @@
  * http://www.apache.org/licenses/LICENSE-2.0
  *
  * Designed and built with all the love in the world @twitter by @mdo and @fat.
- * Date: Sat Jan 14 16:44:52 PST 2012
+ * Date: Sat Jan 14 16:50:17 PST 2012
  */
 html, body {
   margin: 0;
@@ -1017,7 +1017,7 @@ tbody + tbody {
 .bordered-table td + th {
   border-left: 1px solid #ddd;
 }
-.bordered-table thead:first-child tr:first-child th, .bordered-table tbody:first-child tr:first-child td {
+.bordered-table thead:first-child tr:first-child th, .bordered-table tbody:first-child tr:first-child th, .bordered-table tbody:first-child tr:first-child td {
   border-top: 0;
 }
 .bordered-table thead:first-child tr:first-child th:first-child, .bordered-table tbody:first-child tr:first-child td:first-child {
index 5341d3595000d9ac3b84eb032f3ab3e91459e4e5..c5c0c664ef75ca0034c75f6bd1a94d10cd40f10d 100644 (file)
@@ -184,7 +184,7 @@ thead:first-child tr th,thead:first-child tr td{border-top:0;}
 tbody+tbody{border-top:2px solid #ddd;}
 .condensed-table th,.condensed-table td{padding:4px 5px;}
 .bordered-table{border:1px solid #ddd;border-collapse:separate;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.bordered-table th+th,.bordered-table td+td,.bordered-table th+td,.bordered-table td+th{border-left:1px solid #ddd;}
-.bordered-table thead:first-child tr:first-child th,.bordered-table tbody:first-child tr:first-child td{border-top:0;}
+.bordered-table thead:first-child tr:first-child th,.bordered-table tbody:first-child tr:first-child th,.bordered-table tbody:first-child tr:first-child td{border-top:0;}
 .bordered-table thead:first-child tr:first-child th:first-child,.bordered-table tbody:first-child tr:first-child td:first-child{-webkit-border-radius:4px 0 0 0;-moz-border-radius:4px 0 0 0;border-radius:4px 0 0 0;}
 .bordered-table thead:first-child tr:first-child th:last-child,.bordered-table tbody:first-child tr:first-child td:last-child{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0;}
 .bordered-table thead:last-child tr:last-child th:first-child,.bordered-table tbody:last-child tr:last-child td:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px;}
index 8b69f5d7f9b320c08a29dd64f2d4aa868b3c8844..1d044ec7c61bea8c9f81bf0190ce820e74244154 100644 (file)
@@ -65,6 +65,7 @@ tbody + tbody {
   }
   // Prevent a double border
   thead:first-child tr:first-child th,
+  tbody:first-child tr:first-child th,
   tbody:first-child tr:first-child td {
     border-top: 0;
   }