Improve dashboard styles and bump. see #17324.

git-svn-id: http://svn.automattic.com/wordpress/trunk@17818 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
koopersmith 2011-05-06 06:46:01 +00:00
parent 75d0dad1ef
commit a5151a2939
5 changed files with 34 additions and 23 deletions

File diff suppressed because one or more lines are too long

View File

@ -242,7 +242,6 @@ div.error a {
.nonessential,
#edit-slug-box,
.form-input-tip,
.rss-widget span.rss-date,
.subsubsub {
color: #666;
}

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,10 @@
.postbox p, .postbox ul, .postbox ol, .postbox blockquote, #wp-version-message { font-size: 11px; }
.postbox p,
.postbox ul,
.postbox ol,
.postbox blockquote,
#wp-version-message {
font-size: 12px;
}
.edit-box {
display: none;
@ -79,6 +85,7 @@ div.postbox div.inside {
#dashboard-widgets h4 {
font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
font-weight: normal;
font-size: 13px;
margin: 0 0 .2em;
padding: 0;
@ -235,10 +242,9 @@ div.postbox div.inside {
}
#the-comment-list .comment-item h4 {
line-height: 1.4;
margin-top: -.2em;
font-weight: normal;
color: #999;
line-height: 1.7em;
margin-top: -0.4em;
color: #777;
}
#the-comment-list .comment-item h4 cite {
@ -261,7 +267,7 @@ div.postbox div.inside {
#the-comment-list .comment-item p.row-actions {
margin: 3px 0 0;
padding: 0;
font-size: 10px;
font-size: 11px;
}
/* QuickPress */
@ -327,17 +333,18 @@ div.postbox div.inside {
}
#dashboard_recent_drafts ul li {
margin-bottom: 0.6em;
margin-bottom: 1em;
}
#dashboard_recent_drafts h4 {
font-weight: normal;
line-height: 1.7em;
}
#dashboard_recent_drafts h4 abbr {
font-weight: normal;
font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
font-size: 11px;
color: #999;
color: #777;
margin-left: 3px;
}
@ -366,6 +373,8 @@ a.rsswidget {
}
.rss-widget span.rss-date {
color: #777;
font-size: 11px;
margin-left: 3px;
}
@ -381,26 +390,29 @@ a.rsswidget {
}
/* Plugins */
#dashboard_plugins h4 {
font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
line-height: 1.7em;
}
#dashboard_plugins h5 {
font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
font-size: 13px !important;
font-weight: normal;
font-size: 13px;
margin: 0;
display: inline;
line-height: 1.4em;
}
#dashboard_plugins h5 a {
font-weight: normal;
line-height: 1.7em;
line-height: 1.4em;
}
#dashboard_plugins .inside span {
font-size: 12px;
padding-left: 5px;
}
#dashboard_plugins p {
margin: 0 0 1.4em;
margin: 0.3em 0 1.4em;
line-height: 1.4em;
}

View File

@ -485,13 +485,13 @@ function wp_default_styles( &$styles ) {
// Any rtl stylesheets that don't have a .dev version for ltr
$no_suffix = array( 'farbtastic' );
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110505b' );
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110506' );
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20101102' );
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
// all colors stylesheets need to have the same query strings (cache manifest compat)
$colors_version = '20110505b';
$colors_version = '20110506';
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
$styles->add( 'colors', true, array(), $colors_version );
@ -501,10 +501,10 @@ function wp_default_styles( &$styles ) {
$styles->add( 'colors-classic', "/wp-admin/css/colors-classic$suffix.css", array(), $colors_version );
$styles->add( 'ms', "/wp-admin/css/ms$suffix.css", array(), '20101213' );
$styles->add( 'global', "/wp-admin/css/global$suffix.css", array(), '20110504' );
$styles->add( 'global', "/wp-admin/css/global$suffix.css", array(), '20110506' );
$styles->add( 'media', "/wp-admin/css/media$suffix.css", array(), '20110121' );
$styles->add( 'widgets', "/wp-admin/css/widgets$suffix.css", array(), '20110504' );
$styles->add( 'dashboard', "/wp-admin/css/dashboard$suffix.css", array(), '20110504b' );
$styles->add( 'dashboard', "/wp-admin/css/dashboard$suffix.css", array(), '20110506' );
$styles->add( 'install', "/wp-admin/css/install$suffix.css", array(), '20110121' ); // Readme as well
$styles->add( 'theme-editor', "/wp-admin/css/theme-editor$suffix.css", array(), '20110504' );
$styles->add( 'press-this', "/wp-admin/css/press-this$suffix.css", array(), '20110121' );