/media/com_bootstrap/less/component-animations.less
https://bitbucket.org/organicdevelopment/com_bootstrap · LESS · 22 lines · 16 code · 3 blank · 3 comment · 0 complexity · 187f9da4ce323b12c0a84ffa2d736f6c MD5 · raw file
- //
- // 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;
- }
- }