1
0
mirror of https://github.com/kakwa/ldapcherry synced 2024-06-10 04:39:52 +02:00
ldapcherry/resources/static/less/component-animations.less
2014-06-02 23:10:19 +02:00

30 lines
509 B
Plaintext

//
// Component animations
// --------------------------------------------------
// Heads up!
//
// We don't use the `.opacity()` mixin here since it causes a bug with text
// fields in IE7-8. Source: https://github.com/twitter/bootstrap/pull/3552.
.fade {
opacity: 0;
.transition(opacity .15s linear);
&.in {
opacity: 1;
}
}
.collapse {
display: none;
&.in {
display: block;
}
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
.transition(height .35s ease);
}