Embiggen fonts. see #17324.

git-svn-id: http://svn.automattic.com/wordpress/trunk@17859 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
koopersmith 2011-05-11 17:04:40 +00:00
parent c1d58d7b75
commit c90a7a674d
7 changed files with 31 additions and 24 deletions

File diff suppressed because one or more lines are too long

View File

@ -719,12 +719,12 @@ table.widefat span.spam a,
}
#user_info {
color: #777;
color: #555;
}
#user_info:hover,
#user_info.active {
color: #333;
color: #222;
}
#user_info.active {
@ -1815,3 +1815,9 @@ div.widgets-sortables,
background: #f9f9f9;
border-bottom-color: #f9f9f9;
}
/* custom header page */
.appearance_page_custom-header #upload-form p label {
color: #777;
}
/* end custom header page */

File diff suppressed because one or more lines are too long

View File

@ -295,8 +295,9 @@ div.postbox div.inside {
#dashboard_quick_press #media-buttons {
margin: 0 0 .5em 5em;
padding: 0 0 0 10px;
font-size: 11px;
font-size: 12px;
line-height: 17px;
color: #777;
}
#dashboard_quick_press #media-buttons a {
@ -343,8 +344,8 @@ div.postbox div.inside {
#dashboard_recent_drafts h4 abbr {
font-weight: normal;
font-family: Arial, "Bitstream Vera Sans", Helvetica, Verdana, sans-serif;
font-size: 11px;
color: #777;
font-size: 12px;
color: #999;
margin-left: 3px;
}
@ -373,8 +374,8 @@ a.rsswidget {
}
.rss-widget span.rss-date {
color: #777;
font-size: 11px;
color: #999;
font-size: 12px;
margin-left: 3px;
}

File diff suppressed because one or more lines are too long

View File

@ -162,7 +162,7 @@ input.button-secondary,
input.button-highlighted,
#postcustomstuff .submit input {
text-decoration: none;
font-size: 11px !important;
font-size: 12px !important;
line-height: 13px;
padding: 3px 8px;
cursor: pointer;
@ -1102,7 +1102,7 @@ form.upgrade .hint {
padding: 0 16px 0 6px;
height: 22px;
line-height: 22px;
font-size: 11px;
font-size: 12px;
display: block;
text-shadow: rgba(255,255,255,0.7) 0 1px 0;
}
@ -1436,10 +1436,10 @@ body.no-js #adminmenu li.wp-has-current-submenu .wp-submenu {
}
.post-com-count span {
font-size: 9px;
font-size: 11px;
font-weight: bold;
height: 1.7em;
line-height: 1.70em;
height: 1.4em;
line-height: 1.4em;
min-width: 0.7em;
padding: 0 6px;
display: inline-block;
@ -1473,8 +1473,8 @@ strong .post-com-count {
}
#collapse-menu {
font-size: 11px;
line-height: 32px;
font-size: 12px;
line-height: 34px;
}
.folded #collapse-menu span {
display: none;
@ -2620,7 +2620,7 @@ td.post-title p, td.plugin-title p {
}
#post-status-info td {
font-size: 11px;
font-size: 12px;
}
.autosave-info {
@ -3985,7 +3985,7 @@ table#availablethemes td.bottom {
}
.appearance_page_custom-header #upload-form p label {
font-size: 11px;
font-size: 12px;
}
.appearance_page_custom-header .available-headers .default-header {
@ -4417,7 +4417,7 @@ table.form-table td .updated {
}
#poststuff h3,
.metabox-holder h3 {
font-size: 14px;
font-size: 15px;
font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
font-weight: normal;
padding: 7px 0;
@ -4426,7 +4426,7 @@ table.form-table td .updated {
}
#poststuff .inside,
#poststuff .inside p {
font-size: 11px;
font-size: 12px;
margin: 6px 0 8px;
}
#poststuff .inside .submitbox p {

View File

@ -487,13 +487,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(), '20110511c' );
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110511d' );
$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 = '20110511';
$colors_version = '20110511b';
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
$styles->add( 'colors', true, array(), $colors_version );
@ -506,7 +506,7 @@ function wp_default_styles( &$styles ) {
$styles->add( 'global', "/wp-admin/css/global$suffix.css", array(), '20110511c' );
$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(), '20110511' );
$styles->add( 'dashboard', "/wp-admin/css/dashboard$suffix.css", array(), '20110511b' );
$styles->add( 'install', "/wp-admin/css/install$suffix.css", array(), '20110506' ); // Readme as well
$styles->add( 'theme-editor', "/wp-admin/css/theme-editor$suffix.css", array(), '20110506' );
$styles->add( 'press-this', "/wp-admin/css/press-this$suffix.css", array(), '20110506' );