grunt autoprefixer for [31333].

see ##29820.

git-svn-id: https://develop.svn.wordpress.org/trunk@31465 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90) 2015-02-15 12:17:41 +00:00
parent 9e3fffdf09
commit 73a85825fb

View File

@ -1233,12 +1233,30 @@ tr.active.update + tr.plugin-update-tr .plugin-update {
.plugin-update-tr .updating-message:before,
.plugin-card .updating-message:before {
content: '\f463';
-webkit-animation: rotation 2s infinite linear;
-webkit-animation: rotation 2s infinite linear;
animation: rotation 2s infinite linear;
}
@-webkit-keyframes rotation {
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(359deg);}
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes rotation {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
.plugin-update-tr .updated-message:before,