Commit d30222d417 for wordpress.org

commit d30222d417c5b24ee992b1e82a9c6c7bc6a97893
Author: Tammie Lister <tammie@automattic.com>
Date:   Mon Jun 30 09:37:36 2025 +0000

    Twenty Twenty-One: Fixes List Item Block Margin.

    The margin was different depending on the front or back of the editor. This patch is a companion to the next commit incoming from issue 63549. That issue resolves the line-height inconsistency, and this one does not.

    Props nidhidhandhukiya, ugyensupport, sandeepdahiya, rishabhwp, mleraygp, SirLouen, sabernhardt.
    Fixes #60196.

    Built from https://develop.svn.wordpress.org/trunk@60366


    git-svn-id: http://core.svn.wordpress.org/trunk@59702 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-content/themes/twentytwentyone/assets/css/style-editor.css b/wp-content/themes/twentytwentyone/assets/css/style-editor.css
index 41b5c6cb85..ec256a7572 100644
--- a/wp-content/themes/twentytwentyone/assets/css/style-editor.css
+++ b/wp-content/themes/twentytwentyone/assets/css/style-editor.css
@@ -2648,3 +2648,6 @@ a {
 .has-red-to-purple-gradient-background {
 	background: linear-gradient(160deg, var(--global--color-red), var(--global--color-purple));
 }
+.wp-block-list [data-block] {
+	margin: 0;
+}
\ No newline at end of file
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 10e6a2692c..8cf984d00d 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '6.9-alpha-60365';
+$wp_version = '6.9-alpha-60366';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.