freeze bootstrap in version v2.3.2
This commit is contained in:
parent
38c27a23f5
commit
dc07e5f394
48 changed files with 6197 additions and 4 deletions
22
vendor/assets/stylesheets/bootstrap/component-animations.less
vendored
Normal file
22
vendor/assets/stylesheets/bootstrap/component-animations.less
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
//
|
||||
// Component animations
|
||||
// --------------------------------------------------
|
||||
|
||||
|
||||
.fade {
|
||||
opacity: 0;
|
||||
.transition(opacity .15s linear);
|
||||
&.in {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.collapse {
|
||||
position: relative;
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
.transition(height .35s ease);
|
||||
&.in {
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue