WordPress Version: 1.1
/**
* Temporary function to add a missing style rule to the themes page.
* This avoids the need to ship an entirely rebuilt wp-admin.css in partial builds.
*
* @since 4.1.1
* @ignore
*/
function _wp_add_themesphp_notice_styling()
{
global $pagenow;
if ('themes.php' == $pagenow) {
echo "<style type='text/css'>.themes-php div.notice { margin: 0 0 20px 0; clear: both; }</style>\n";
}
}