mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-20 20:00:36 +03:00
Fixes #12593: Add support for table bodies and table rows to the collapse plugin
This commit is contained in:
Vendored
+6
@@ -2366,6 +2366,12 @@ input[type="button"].btn-block {
|
|||||||
.collapse.in {
|
.collapse.in {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
tr.collapse.in {
|
||||||
|
display: table-row;
|
||||||
|
}
|
||||||
|
tbody.collapse.in {
|
||||||
|
display: table-row-group;
|
||||||
|
}
|
||||||
.collapsing {
|
.collapsing {
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 0;
|
height: 0;
|
||||||
|
|||||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -17,10 +17,12 @@
|
|||||||
|
|
||||||
.collapse {
|
.collapse {
|
||||||
display: none;
|
display: none;
|
||||||
&.in {
|
|
||||||
display: block;
|
&.in { display: block; }
|
||||||
}
|
tr&.in { display: table-row; }
|
||||||
|
tbody&.in { display: table-row-group; }
|
||||||
}
|
}
|
||||||
|
|
||||||
.collapsing {
|
.collapsing {
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 0;
|
height: 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user