Fix the border in the install plugins table

git-svn-id: https://develop.svn.wordpress.org/trunk@11520 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2009-06-04 08:21:17 +00:00
parent c4f32f9032
commit 5f92ac9d93
4 changed files with 17 additions and 5 deletions

View File

@ -443,7 +443,9 @@ a.page-numbers {
}
.widefat td,
.widefat th {
.widefat th,
#install-plugins .plugins td,
#install-plugins .plugins th {
border-color: #dfdfdf;
}

View File

@ -439,7 +439,9 @@ a.page-numbers {
}
.widefat td,
.widefat th {
.widefat th,
#install-plugins .plugins td,
#install-plugins .plugins th {
border-color: #dfdfdf;
}

View File

@ -76,6 +76,12 @@ select option {
border-bottom: 0 none;
}
#install-plugins .plugins td,
#install-plugins .plugins th {
border-bottom-style: solid;
border-bottom-width: 1px;
}
.plugins .inactive td,
.plugins .inactive th,
.plugins .active td,

View File

@ -421,9 +421,9 @@ function wp_default_styles( &$styles ) {
$rtl_styles = array( 'global', 'colors', 'dashboard', 'ie', 'install', 'login', 'media', 'theme-editor', 'upload', 'widgets', 'press-this', 'plugin-install', 'farbtastic' );
// all colors stylesheets need to have the same query strings (cache manifest compat)
$colors_version = '20090603';
$colors_version = '20090603a';
$styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20090522' );
$styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20090603' );
$styles->add_data( 'wp-admin', 'rtl', '/wp-admin/rtl.css' );
$styles->add( 'ie', '/wp-admin/css/ie.css', array(), '20090514' );
@ -431,7 +431,9 @@ function wp_default_styles( &$styles ) {
// 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-fresh', '/wp-admin/css/colors-fresh.css', array(), $colors_version); // for login.php. Is there a better way?
// do not refer to these directly, the right one is queued by the above "meta" colors handle
$styles->add( 'colors-fresh', '/wp-admin/css/colors-fresh.css', array(), $colors_version);
$styles->add_data( 'colors-fresh', 'rtl', true );
$styles->add( 'colors-classic', '/wp-admin/css/colors-classic.css', array(), $colors_version);
$styles->add_data( 'colors-classic', 'rtl', true );