1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/static/less/component-animations.less Fri Dec 20 22:30:44 2013 +0100
1.3 @@ -0,0 +1,29 @@
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 +}