Skip to content

Instantly share code, notes, and snippets.

@rugor
Last active January 19, 2016 20:51
Show Gist options
  • Save rugor/2661610011b50cdef678 to your computer and use it in GitHub Desktop.
Save rugor/2661610011b50cdef678 to your computer and use it in GitHub Desktop.
PHP: WordPress functions.php, fix for Chrome 45 Admin Dashboard bug #rugor #st
add_action('admin_enqueue_scripts', 'chrome_fix');
function chrome_fix() {
if ( strpos( $_SERVER['HTTP_USER_AGENT'], 'Chrome' ) !== false )
wp_add_inline_style( 'wp-admin', '#adminmenu { transform: translateZ(0); }' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment