From: Kevin O'Connor Date: Thu, 5 Sep 2013 19:54:18 +0000 (-0400) Subject: Don't double border a bordered table within a panel X-Git-Tag: v3.0.1~53 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F10484%2Fhead;p=thirdparty%2Fbootstrap.git Don't double border a bordered table within a panel --- diff --git a/less/panels.less b/less/panels.less index 86aef92421..602b1cd8ee 100644 --- a/less/panels.less +++ b/less/panels.less @@ -62,6 +62,23 @@ > .panel-body + .table { border-top: 1px solid @table-border-color; } + > .table-bordered { + border: none; + > thead, + > tbody, + > tfoot { + > tr { + > th:first-child, + > td:first-child { + border-left: none; + } + > th:last-child, + > td:last-child { + border-right: none; + } + } + } + } }