Round the corners of the Update nag message. Fixes #10431 props Simek.

git-svn-id: http://svn.automattic.com/wordpress/trunk@12530 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2009-12-24 08:08:13 +00:00
parent 39febf48a3
commit 9ffd65beb7
7 changed files with 21 additions and 14 deletions

File diff suppressed because one or more lines are too long

View File

@ -698,8 +698,8 @@ table.widefat span.spam a,
}
#update-nag {
background-color: #fffeeb;
border-color: #ccc;
background-color: #FFFBCC;
border-color: #E6DB55;
color: #555;
}

File diff suppressed because one or more lines are too long

View File

@ -693,8 +693,8 @@ table.widefat span.spam a,
}
#update-nag {
background-color: #fffeeb;
border-color: #ccc;
background-color: #FFFBCC;
border-color: #E6DB55;
color: #555;
}

File diff suppressed because one or more lines are too long

View File

@ -806,11 +806,18 @@ td.media-icon img {
line-height: 29px;
font-size: 12px;
text-align: center;
}
#update-nag {
border-width: 1px 0;
border-style: solid none;
margin: 0 6px;
border-width: 1px;
border-style: solid;
border-top-width: 0;
border-top-style: none;
-moz-border-radius: 0 0 6px 6px;
-webkit-border-bottom-right-radius: 6px;
-webkit-border-bottom-left-radius: 6px;
-khtml-border-bottom-right-radius: 6px;
-khtml-border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
border-bottom-left-radius: 6px;
}
.plugins .plugin-update {

View File

@ -428,9 +428,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 = '20091217';
$colors_version = '20091224';
$styles->add( 'wp-admin', "/wp-admin/wp-admin$suffix.css", array(), '20091221' );
$styles->add( 'wp-admin', "/wp-admin/wp-admin$suffix.css", array(), '20091224' );
$styles->add_data( 'wp-admin', 'rtl', "/wp-admin/rtl$suffix.css" );
$styles->add( 'ie', '/wp-admin/css/ie.css', array(), '20091221' );