Fix gravatars shifting in IE7, add title to postbox toggle, fixes #8436

git-svn-id: http://svn.automattic.com/wordpress/trunk@9994 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2008-12-01 01:31:57 +00:00
parent 07df400a13
commit 52c4b634d5
2 changed files with 6 additions and 1 deletions

View File

@ -188,6 +188,10 @@ ul#adminmenu {
line-height: 20px;
}
#the-comment-list .comment-item {
zoom: 100%;
}
#wphead-info {
float: right;
}

View File

@ -2750,7 +2750,8 @@ function do_meta_boxes($page, $context, $object) {
if ( in_array($box['id'], $hidden) )
$style = 'style="display:none;"';
echo '<div id="' . $box['id'] . '" class="postbox ' . postbox_classes($box['id'], $page) . '" ' . $style . '>' . "\n";
echo "<div class='handlediv'><br /></div><h3 class='hndle'><span>{$box['title']}</span></h3>\n";
echo '<div class="handlediv" title="' . __('Click to toggle') . '"><br /></div>';
echo "<h3 class='hndle'><span>{$box['title']}</span></h3>\n";
echo '<div class="inside">' . "\n";
call_user_func($box['callback'], $object, $box);
echo "</div>\n";