Fix right sidebar on edit comment screen
git-svn-id: http://svn.automattic.com/wordpress/trunk@10843 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
586b13382a
commit
3ca8d791a8
|
@ -117,6 +117,7 @@ table {
|
|||
float: right;
|
||||
clear: right;
|
||||
display: none;
|
||||
width: 281px;
|
||||
}
|
||||
|
||||
.inner-sidebar #side-sortables {
|
||||
|
|
|
@ -7,8 +7,7 @@ input.button-highlighted {
|
|||
}
|
||||
|
||||
#minor-publishing-actions input,
|
||||
#major-publishing-actions input,
|
||||
#minor-publishing-actions .preview {
|
||||
#major-publishing-actions input {
|
||||
min-width: auto;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
|
@ -203,6 +202,7 @@ ul#widget-list li.widget-list-item {
|
|||
a.button {
|
||||
line-height: 1.4em;
|
||||
margin: 1px;
|
||||
padding: 4px 6px;
|
||||
}
|
||||
|
||||
* html div.widget-liquid-left-holder,
|
||||
|
@ -228,7 +228,6 @@ a.button {
|
|||
#post-status-info,
|
||||
#wpwrap,
|
||||
#wpcontent,
|
||||
#post,
|
||||
#wrap,
|
||||
#postdivrich,
|
||||
#postdiv,
|
||||
|
|
|
@ -21,7 +21,7 @@ $form_extra = "' />\n<input type='hidden' name='comment_ID' value='" . $comment-
|
|||
<?php screen_icon(); ?>
|
||||
<h2><?php _e('Edit Comment'); ?></h2>
|
||||
|
||||
<div id="poststuff" class="metabox-holder">
|
||||
<div id="poststuff" class="metabox-holder has-right-sidebar">
|
||||
<input type="hidden" name="user_ID" value="<?php echo (int) $user_ID ?>" />
|
||||
<input type="hidden" name="action" value='<?php echo $form_action . $form_extra ?>' />
|
||||
<?php
|
||||
|
@ -85,7 +85,7 @@ $date = date_i18n( $datef, strtotime( $comment->comment_date ) );
|
|||
<div id="namediv" class="stuffbox">
|
||||
<h3><label for="name"><?php _e( 'Author' ) ?></label></h3>
|
||||
<div class="inside">
|
||||
<table class="form-table">
|
||||
<table class="form-table editcomment">
|
||||
<tbody>
|
||||
<tr valign="top">
|
||||
<td class="first"><?php _e( 'Name:' ); ?></td>
|
||||
|
|
|
@ -3038,3 +3038,6 @@ p.popular-tags a {
|
|||
padding: 0 3px;
|
||||
}
|
||||
|
||||
.stuffbox .editcomment {
|
||||
clear: none;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue