From 73a85825fb2eed7c0f77f8c1b4afe89a77eca65d Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Sun, 15 Feb 2015 12:17:41 +0000 Subject: [PATCH] `grunt autoprefixer` for [31333]. see ##29820. git-svn-id: https://develop.svn.wordpress.org/trunk@31465 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/css/list-tables.css | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/src/wp-admin/css/list-tables.css b/src/wp-admin/css/list-tables.css index 653d3d1604..07a005bd87 100644 --- a/src/wp-admin/css/list-tables.css +++ b/src/wp-admin/css/list-tables.css @@ -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,