1.1 --- a/bootstrap-source/bootstrap-3.0.3/less/component-animations.less Sat Jan 18 12:34:36 2014 +0100
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,29 +0,0 @@
1.4 -//
1.5 -// Component animations
1.6 -// --------------------------------------------------
1.7 -
1.8 -// Heads up!
1.9 -//
1.10 -// We don't use the `.opacity()` mixin here since it causes a bug with text
1.11 -// fields in IE7-8. Source: https://github.com/twitter/bootstrap/pull/3552.
1.12 -
1.13 -.fade {
1.14 - opacity: 0;
1.15 - .transition(opacity .15s linear);
1.16 - &.in {
1.17 - opacity: 1;
1.18 - }
1.19 -}
1.20 -
1.21 -.collapse {
1.22 - display: none;
1.23 - &.in {
1.24 - display: block;
1.25 - }
1.26 -}
1.27 -.collapsing {
1.28 - position: relative;
1.29 - height: 0;
1.30 - overflow: hidden;
1.31 - .transition(height .35s ease);
1.32 -}