aboutsummaryrefslogtreecommitdiffstats
path: root/resources/src/mediawiki.less/mediawiki.mixins.animation.less
blob: c7eab500a74127f18c4d771a79de3a4dca07cd72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// @deprecated since MW 1.39.0, use unprefixed `animation:` now.
.animation( ... ) {
	animation: @arguments;
}

// @deprecated since MW 1.39.0, use unprefixed `animation-delay:` now.
.animation-delay( ... ) {
	animation-delay: @arguments;
}

// @deprecated since MW 1.39.0, use unprefixed `transform: rotate( ... )` now.
.transform-rotate( @deg ) {
	transform: rotate( @deg );
}