grunt autoprefixer for [31333].

see ##29820.
Built from https://develop.svn.wordpress.org/trunk@31465


git-svn-id: http://core.svn.wordpress.org/trunk@31446 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2015-02-15 12:18:25 +00:00
parent 52e5bc2eee
commit 7bd3ea7da9
5 changed files with 45 additions and 9 deletions

View File

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

View File

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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.2-alpha-31464'; $wp_version = '4.2-alpha-31465';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.