Themes: Fix flickering of the theme screenshot on hover in WebKit browsers.

Props JoeFusco.
Fixes #35787.
Built from https://develop.svn.wordpress.org/trunk@36579


git-svn-id: http://core.svn.wordpress.org/trunk@36546 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2016-02-18 21:11:27 +00:00
parent 529a53e903
commit 284f88e35a
5 changed files with 5 additions and 3 deletions

View File

@ -132,6 +132,7 @@
display: block;
overflow: hidden;
position: relative;
-webkit-backface-visibility: hidden; /* Prevents flicker of the screenshot on hover. */
-webkit-transition: opacity 0.2s ease-in-out;
transition: opacity 0.2s ease-in-out;
}

File diff suppressed because one or more lines are too long

View File

@ -132,6 +132,7 @@
display: block;
overflow: hidden;
position: relative;
-webkit-backface-visibility: hidden; /* Prevents flicker of the screenshot on hover. */
-webkit-transition: opacity 0.2s ease-in-out;
transition: opacity 0.2s ease-in-out;
}

File diff suppressed because one or more lines are too long

View File

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