Fix comments postbox:

- Add comment button text.
- Positioning of the Author, Email, URL fields.
Fixes #32349.
Built from https://develop.svn.wordpress.org/trunk@32495


git-svn-id: http://core.svn.wordpress.org/trunk@32465 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz 2015-05-12 01:22:25 +00:00
parent ede6d64e7b
commit fe427017a5
7 changed files with 19 additions and 7 deletions

View File

@ -125,7 +125,8 @@ strong .post-com-count:after {
font-size: 1em;
}
#edithead .inside {
#edithead .inside,
#commentsdiv #edithead .inside {
float: right;
padding: 3px 5px 2px 0;
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

@ -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;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

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 {

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.3-alpha-32494';
$wp_version = '4.3-alpha-32495';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.