Multiple themes: Comments Reply heading and Cancel reply link did not have spacing.
This brings spacing in that was missing for both Twenty Seventeen and also Twenty Nineteen. It was missing between the words. Props pitamdey, sabernhardt, nidhidhandhukiya, poena. Fixes #59334. Built from https://develop.svn.wordpress.org/trunk@58732 git-svn-id: http://core.svn.wordpress.org/trunk@58134 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
112eb192f1
commit
b079b72a24
|
@ -86,6 +86,10 @@
|
|||
top: calc(-3.5 * #{$size__spacing-unit});
|
||||
width: calc(100vw / 12 );
|
||||
}
|
||||
|
||||
.comment-reply-title small {
|
||||
margin-left: 0.5em;
|
||||
}
|
||||
}
|
||||
|
||||
#comments {
|
||||
|
|
|
@ -4668,6 +4668,10 @@ body.page .main-navigation {
|
|||
width: calc(100vw / 12);
|
||||
}
|
||||
|
||||
#respond .comment-reply-title small {
|
||||
margin-right: 0.5em;
|
||||
}
|
||||
|
||||
#comments > .comments-title:last-child {
|
||||
display: none;
|
||||
}
|
||||
|
|
|
@ -4674,6 +4674,10 @@ body.page .main-navigation {
|
|||
width: calc(100vw / 12);
|
||||
}
|
||||
|
||||
#respond .comment-reply-title small {
|
||||
margin-left: 0.5em;
|
||||
}
|
||||
|
||||
#comments > .comments-title:last-child {
|
||||
display: none;
|
||||
}
|
||||
|
|
|
@ -180,6 +180,11 @@ input[type="checkbox"] {
|
|||
transform: scale(-1, 1);
|
||||
}
|
||||
|
||||
.comment-reply-title small {
|
||||
margin-left: 0;
|
||||
margin-right: 0.5em;
|
||||
}
|
||||
|
||||
.comment-author .avatar {
|
||||
left: auto;
|
||||
right: -65px;
|
||||
|
|
|
@ -2488,6 +2488,10 @@ body:not(.twentyseventeen-front-page) .entry-header {
|
|||
width: 1em;
|
||||
}
|
||||
|
||||
.comment-reply-title small {
|
||||
margin-left: 0.5em;
|
||||
}
|
||||
|
||||
.children .comment-author .avatar {
|
||||
height: 30px;
|
||||
left: -45px;
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.7-alpha-58731';
|
||||
$wp_version = '6.7-alpha-58732';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue