From b079b72a242a41caec8c7e37af96784d5f01b342 Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Tue, 16 Jul 2024 13:22:15 +0000 Subject: [PATCH] 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 --- .../themes/twentynineteen/sass/site/primary/_comments.scss | 4 ++++ wp-content/themes/twentynineteen/style-rtl.css | 4 ++++ wp-content/themes/twentynineteen/style.css | 4 ++++ wp-content/themes/twentyseventeen/rtl.css | 5 +++++ wp-content/themes/twentyseventeen/style.css | 4 ++++ wp-includes/version.php | 2 +- 6 files changed, 22 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/twentynineteen/sass/site/primary/_comments.scss b/wp-content/themes/twentynineteen/sass/site/primary/_comments.scss index fa4000e304..e8b22180f3 100644 --- a/wp-content/themes/twentynineteen/sass/site/primary/_comments.scss +++ b/wp-content/themes/twentynineteen/sass/site/primary/_comments.scss @@ -86,6 +86,10 @@ top: calc(-3.5 * #{$size__spacing-unit}); width: calc(100vw / 12 ); } + + .comment-reply-title small { + margin-left: 0.5em; + } } #comments { diff --git a/wp-content/themes/twentynineteen/style-rtl.css b/wp-content/themes/twentynineteen/style-rtl.css index e37dcf2469..75eddee585 100644 --- a/wp-content/themes/twentynineteen/style-rtl.css +++ b/wp-content/themes/twentynineteen/style-rtl.css @@ -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; } diff --git a/wp-content/themes/twentynineteen/style.css b/wp-content/themes/twentynineteen/style.css index 4f858a23f4..399577b0d7 100644 --- a/wp-content/themes/twentynineteen/style.css +++ b/wp-content/themes/twentynineteen/style.css @@ -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; } diff --git a/wp-content/themes/twentyseventeen/rtl.css b/wp-content/themes/twentyseventeen/rtl.css index f91e2a6ded..0d367fcac7 100644 --- a/wp-content/themes/twentyseventeen/rtl.css +++ b/wp-content/themes/twentyseventeen/rtl.css @@ -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; diff --git a/wp-content/themes/twentyseventeen/style.css b/wp-content/themes/twentyseventeen/style.css index 50e0081c26..0a8a555e9b 100644 --- a/wp-content/themes/twentyseventeen/style.css +++ b/wp-content/themes/twentyseventeen/style.css @@ -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; diff --git a/wp-includes/version.php b/wp-includes/version.php index ffea278585..74dcb3c3c1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.