| Current Path : /var/www/html/mediawiki-1.43.1/resources/src/mediawiki.less/ |
| Current File : /var/www/html/mediawiki-1.43.1/resources/src/mediawiki.less/mediawiki.mixins.rotation.less |
// This is a separate file because importing the mixin causes
// the keyframes blocks to be included in the output, regardless
// of whether .rotation is used.
.rotate-frames() {
from {
transform: rotate( 0deg );
}
to {
transform: rotate( 360deg );
}
}
@keyframes rotate {
.rotate-frames;
}
.rotation( @time ) {
animation: rotate @time infinite linear;
}