1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-06 20:46:57 +00:00
TiddlyWiki5/cssbuild/twitter-bootstrap/less/component-animations.less

21 lines
272 B
Plaintext
Raw Normal View History

// 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;
}
}