Don't sort plugin descriptions column. Make on state for sortable columns black, not the typical link orange. fixes #15224.

git-svn-id: http://svn.automattic.com/wordpress/trunk@15981 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-10-26 18:15:47 +00:00
parent e2d7b7dbe9
commit 5a81941fed
6 changed files with 11 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@ -477,6 +477,10 @@ h3.dashboard-widget-title small,
background: #d5e6f2 url(../images/blue-grad.png) repeat-x scroll left top; background: #d5e6f2 url(../images/blue-grad.png) repeat-x scroll left top;
} }
th.sortable a:hover, th.sortable a:active, th.sortable a:focus {
color: #333;
}
h3.dashboard-widget-title small a { h3.dashboard-widget-title small a {
color: #d7d7d7; color: #d7d7d7;
} }

File diff suppressed because one or more lines are too long

View File

@ -476,6 +476,10 @@ h3.dashboard-widget-title small,
background: #dfdfdf url(../images/gray-grad.png) repeat-x scroll left top; background: #dfdfdf url(../images/gray-grad.png) repeat-x scroll left top;
} }
th.sortable a:hover, th.sortable a:active, th.sortable a:focus {
color: #333;
}
h3.dashboard-widget-title small a { h3.dashboard-widget-title small a {
color: #d7d7d7; color: #d7d7d7;
} }

View File

@ -191,7 +191,6 @@ class WP_Plugins_Table extends WP_List_Table {
function get_sortable_columns() { function get_sortable_columns() {
return array( return array(
'name' => 'name', 'name' => 'name',
'description' => 'description',
); );
} }

View File

@ -460,7 +460,7 @@ function wp_default_styles( &$styles ) {
$styles->add_data( 'ie', 'conditional', 'lte IE 7' ); $styles->add_data( 'ie', 'conditional', 'lte IE 7' );
// all colors stylesheets need to have the same query strings (cache manifest compat) // all colors stylesheets need to have the same query strings (cache manifest compat)
$colors_version = '20101023'; $colors_version = '20101026';
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string. // Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
$styles->add( 'colors', true, array(), $colors_version ); $styles->add( 'colors', true, array(), $colors_version );