1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-02 18:02:37 +02:00

Fixes #12593: Add support for table bodies and table rows to the collapse plugin

This commit is contained in:
Mark Otto
2014-03-03 21:39:53 -08:00
parent cb3cc42315
commit e381635b1f
6 changed files with 15 additions and 7 deletions

View File

@@ -2366,6 +2366,12 @@ input[type="button"].btn-block {
.collapse.in {
display: block;
}
tr.collapse.in {
display: table-row;
}
tbody.collapse.in {
display: table-row-group;
}
.collapsing {
position: relative;
height: 0;