Avoid pointless use of isset() in LBFactoryMulti()
[mediawiki.git] / resources / src / mediawiki.less / mediawiki.mixins.rotation.less
bloba40428680b85bab463918bad3252ed5ea6c45031
1 // This is a separate file because importing the mixin causes
2 // the keyframes blocks to be included in the output, regardless
3 // of whether .rotation is used.
4 @import "mediawiki.mixins.animation";
6 .rotate-frames() {
7         from {
8                 .transform-rotate( 0deg );
9         }
10         to {
11                 .transform-rotate( 360deg );
12         }
15 @-webkit-keyframes rotate {
16         .rotate-frames;
19 @-moz-keyframes rotate {
20         .rotate-frames;
23 @keyframes rotate {
24         .rotate-frames;
27 .rotation( @time ) {
28         .animation( rotate, @time, infinite, linear );