mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-09 15:16:51 +02:00
fix overflow on .collapse.in to enable dropdowns within an open collapse
This commit is contained in:
Binary file not shown.
1
docs/assets/css/bootstrap.css
vendored
1
docs/assets/css/bootstrap.css
vendored
@@ -1928,6 +1928,7 @@ table .span24 {
|
|||||||
}
|
}
|
||||||
.collapse.in {
|
.collapse.in {
|
||||||
height: auto;
|
height: auto;
|
||||||
|
overflow: visible;
|
||||||
}
|
}
|
||||||
.close {
|
.close {
|
||||||
float: right;
|
float: right;
|
||||||
|
@@ -14,5 +14,8 @@
|
|||||||
position:relative;
|
position:relative;
|
||||||
overflow:hidden;
|
overflow:hidden;
|
||||||
height: 0;
|
height: 0;
|
||||||
&.in { height: auto; }
|
&.in {
|
||||||
|
height: auto;
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user