[wp-trac] [WordPress Trac] #14144: Update colors in 'register_admin_color_schemes()' function
WordPress Trac
wp-trac at lists.automattic.com
Tue Jun 29 16:57:46 UTC 2010
#14144: Update colors in 'register_admin_color_schemes()' function
----------------------------+-----------------------------------------------
Reporter: ramiy | Owner:
Type: enhancement | Status: new
Priority: normal | Milestone: Awaiting Review
Component: Graphic Design | Version: 3.0
Severity: normal | Keywords: needs-patch
----------------------------+-----------------------------------------------
In wp3.0 there were changes in "fresh" admin scheme colors (wp-admin/css
/colors-fresh.css) but we forget to update the
[http://codex.wordpress.org/Users_Your_Profile_SubPanel#Your_Profile_and_Personal_Options
Admin Color Schemes] in
[http://codex.wordpress.org/Users_Your_Profile_SubPanel User Profile]
subpanel.
The new "fresh" (gray) CSS has a new color scheme, we need to
[http://core.trac.wordpress.org/browser/trunk/wp-includes/general-
template.php#L2052 update] those colors in
[http://codex.wordpress.org/Function_Reference/register_admin_color_schemes
register_admin_color_schemes()] function too.
----
{{{
function register_admin_color_schemes() {
wp_admin_css_color(
'classic',
__('Blue'),
admin_url("css/colors-classic.css"),
array('#073447', '#21759B', '#EAF3FA', '#BBD8E7')
);
wp_admin_css_color(
'fresh',
__('Gray'),
admin_url("css/colors-fresh.css"),
array('#464646', '#6D6D6D', '#F1F1F1', '#DFDFDF') // <--update colors
);
}
}}}
--
Ticket URL: <http://core.trac.wordpress.org/ticket/14144>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list