Commit ac244040 authored by Kevin O'Connor's avatar Kevin O'Connor

Don't double border a bordered table within a panel

parent 8651180c
......@@ -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;
}
}
}
}
}
......
Markdown is supported
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