0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-19 16:54:24 +01:00

Don't double border a bordered table within a panel

This commit is contained in:
Kevin O'Connor 2013-09-05 15:54:18 -04:00
parent 8651180ca7
commit ac244040d1

View File

@ -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;
}
}
}
}
}