mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-11 02:49:04 +01:00
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:
parent
07df400a13
commit
52c4b634d5
@ -188,6 +188,10 @@ ul#adminmenu {
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
#the-comment-list .comment-item {
|
||||
zoom: 100%;
|
||||
}
|
||||
|
||||
#wphead-info {
|
||||
float: right;
|
||||
}
|
||||
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user