CSS tweaks for plugin page, props Denis-de-Bernardy, fixes #10054
git-svn-id: http://svn.automattic.com/wordpress/trunk@11546 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c5ae6aa620
commit
5b0098f4d7
|
@ -595,6 +595,11 @@ tr.inactive + tr.plugin-update-tr .plugin-update {
|
|||
background-color: #ebeeef;
|
||||
}
|
||||
|
||||
.plugin-update-tr .update-message {
|
||||
background-color: #fffbe4;
|
||||
border-color: #dfdfdf;
|
||||
}
|
||||
|
||||
.plugins .active,
|
||||
.plugins .active th,
|
||||
.plugins .active td {
|
||||
|
|
|
@ -590,6 +590,11 @@ tr.inactive + tr.plugin-update-tr .plugin-update {
|
|||
background-color: #eee;
|
||||
}
|
||||
|
||||
.plugin-update-tr .update-message {
|
||||
background-color: #fffbe4;
|
||||
border-color: #dfdfdf;
|
||||
}
|
||||
|
||||
.plugins .active,
|
||||
.plugins .active th,
|
||||
.plugins .active td {
|
||||
|
|
|
@ -3286,3 +3286,14 @@ label,
|
|||
#your-profile label + a {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.plugin-update-tr .update-message {
|
||||
margin: 5px;
|
||||
padding: 3px 5px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
-moz-border-radius: 5px;
|
||||
-khtml-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
|
|
@ -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 = '20090607';
|
||||
$colors_version = '20090610';
|
||||
|
||||
$styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20090607' );
|
||||
$styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20090610' );
|
||||
$styles->add_data( 'wp-admin', 'rtl', '/wp-admin/rtl.css' );
|
||||
|
||||
$styles->add( 'ie', '/wp-admin/css/ie.css', array(), '20090514' );
|
||||
|
|
Loading…
Reference in New Issue