Apply a no-op CSS transformation to the admin toolbar (among other elements) in order to trigger hardware acceleration when focus/DFW deactivates. This helps prevent rendering issues seen in browsers on Retina devices.

See #30516
Props joemcgill

Built from https://develop.svn.wordpress.org/trunk@30708


git-svn-id: http://core.svn.wordpress.org/trunk@30698 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2014-12-02 14:18:27 +00:00
parent e96e165c3a
commit d58c44dc00
5 changed files with 5 additions and 3 deletions

View File

@ -1283,6 +1283,7 @@ table.links-table {
transition-property: opacity;
-webkit-transition-timing-function: ease-in-out;
transition-timing-function: ease-in-out;
transform: translateZ(0);
}
.focus-on #adminmenuback,

View File

@ -1283,6 +1283,7 @@ table.links-table {
transition-property: opacity;
-webkit-transition-timing-function: ease-in-out;
transition-timing-function: ease-in-out;
transform: translateZ(0);
}
.focus-on #adminmenuback,

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
*/
$wp_version = '4.1-beta2-30707';
$wp_version = '4.1-beta2-30708';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.