Files
bedrock/css/less/component-animations.less
tricil 51518c3eb2 update bootstrap to 2.0.3
single commit this time
2012-04-24 19:23:32 -04:00

20 lines
275 B
Plaintext
Executable File

// COMPONENT ANIMATIONS
// --------------------
.fade {
.opacity(0);
.transition(opacity .15s linear);
&.in {
.opacity(100);
}
}
.collapse {
position: relative;
height: 0;
overflow: hidden;
.transition(height .35s ease);
&.in {
height: auto;
}
}