From 05613ca1640d7f2a69056402daf91031212f851e Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Sun, 9 Jun 2024 09:34:14 +0000 Subject: [PATCH] Twenty Seventeen: Fixes space between latest comments blocks as typography size is increased. The latest comments block space between comments not increases based on typography size. This only impacts the margin if added within a post, widgets on the front-end still only have a 1em margin which is smaller yet variable. Props pitamdey, sabernhardt, shailu25, harshgajipara, rajinsharwar. Fixes #59130. Built from https://develop.svn.wordpress.org/trunk@58367 git-svn-id: http://core.svn.wordpress.org/trunk@57816 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyseventeen/assets/css/blocks.css | 2 +- wp-content/themes/twentyseventeen/assets/css/editor-blocks.css | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-content/themes/twentyseventeen/assets/css/blocks.css b/wp-content/themes/twentyseventeen/assets/css/blocks.css index 0dfb276742..464534c273 100644 --- a/wp-content/themes/twentyseventeen/assets/css/blocks.css +++ b/wp-content/themes/twentyseventeen/assets/css/blocks.css @@ -313,7 +313,7 @@ p.has-drop-cap:not(:focus)::first-letter { /* Comments */ .wp-block-latest-comments article { - margin-bottom: 4em; + margin-bottom: 4rem; } .widget-area .wp-block-latest-comments article { diff --git a/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css b/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css index 60907122cd..d6976f15d3 100644 --- a/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css +++ b/wp-content/themes/twentyseventeen/assets/css/editor-blocks.css @@ -776,7 +776,7 @@ table.wp-block-table td:last-child { /* Latest Comments */ .wp-block-latest-comments article { - margin-bottom: 4em; + margin-bottom: 4rem; } .wp-block-latest-comments .avatar, diff --git a/wp-includes/version.php b/wp-includes/version.php index e71676f3d9..fb63eab905 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.6-beta1-58366'; +$wp_version = '6.6-beta1-58367'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.