margin-bottom of a table isn't set to 0 when table is used inside a collapse component
Created by: jonpasquier
When using a table inside a collapse component, the margin-bottom of the table isn't set to 0 (as it is when using a table directly inside a panel) causing a ugly white space to appear below the table.
Reduced test case on JSBin: http://jsbin.com/koretoje/2/
Workaround Add the following line to your CSS
.panel .panel-collapse .table { margin-bottom : 0; }