Fix comments postbox:

- Add comment button text.
- Positioning of the Author, Email, URL fields.
Fixes #32349.

git-svn-id: https://develop.svn.wordpress.org/trunk@32495 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2015-05-12 01:21:58 +00:00
parent 3b9407b660
commit 59eb437a35
2 changed files with 8 additions and 2 deletions

View File

@ -125,7 +125,8 @@ strong .post-com-count:after {
font-size: 1em;
}
#edithead .inside {
#edithead .inside,
#commentsdiv #edithead .inside {
float: left;
padding: 3px 0 2px 5px;
margin: 0;
@ -357,6 +358,11 @@ table.fixed {
border-bottom: 0 none;
}
#commentsdiv #edithead .inside input {
vertical-align: middle;
width: 160px;
}
.sorting-indicator {
display: none;
width: 10px;

View File

@ -397,7 +397,7 @@ commentReply = {
});
} else if ( action == 'add' ) {
$('#addhead, #addbtn', editRow).show();
$('#replyhead, #replybtn, #edithead, #editbtn', editRow).hide();
$('#replyhead, #replybtn, #edithead, #savebtn', editRow).hide();
$('#the-comment-list').prepend(editRow);
$('#replyrow').fadeIn(300);
} else {