1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-18 19:31:35 +02:00

change how collapse works - collapse, collapsing, and in

This commit is contained in:
fat
2013-07-26 20:34:39 -07:00
parent 178d8e98de
commit e2d4cf5f68
8 changed files with 108 additions and 80 deletions

View File

@@ -2016,6 +2016,14 @@ input[type="button"].btn-block {
}
.collapse {
display: none;
}
.collapse.in {
display: block;
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
@@ -2023,10 +2031,6 @@ input[type="button"].btn-block {
transition: height 0.35s ease;
}
.collapse.in {
height: auto;
}
.caret {
display: inline-block;
width: 0;

File diff suppressed because one or more lines are too long