Skip to content

Commit

Permalink
Multiple themes: Comments Reply heading and Cancel reply link did not…
Browse files Browse the repository at this point in the history
… 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.


git-svn-id: https://develop.svn.wordpress.org/trunk@58732 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
karmatosed committed Jul 16, 2024
1 parent b64a068 commit 606fcbd
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@
top: calc(-3.5 * #{$size__spacing-unit});
width: calc(100vw / 12 );
}

.comment-reply-title small {
margin-left: 0.5em;
}
}

#comments {
Expand Down
4 changes: 4 additions & 0 deletions src/wp-content/themes/twentynineteen/style-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
4 changes: 4 additions & 0 deletions src/wp-content/themes/twentynineteen/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
5 changes: 5 additions & 0 deletions src/wp-content/themes/twentyseventeen/rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 4 additions & 0 deletions src/wp-content/themes/twentyseventeen/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 606fcbd

Please sign in to comment.