From d9b8777797c6c168bb7cbb9c9fcb3988e03a4061 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Wed, 21 Jun 2023 15:07:22 +0000 Subject: [PATCH] Twenty Sixteen: Fix List block padding in the editor. Props nidhidhandhukiya, sabernhardt, poena. Fixes #58409. Built from https://develop.svn.wordpress.org/trunk@55966 git-svn-id: http://core.svn.wordpress.org/trunk@55478 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentysixteen/css/editor-blocks.css | 5 +++++ wp-includes/version.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/twentysixteen/css/editor-blocks.css b/wp-content/themes/twentysixteen/css/editor-blocks.css index 85db767261..369fbe6c34 100644 --- a/wp-content/themes/twentysixteen/css/editor-blocks.css +++ b/wp-content/themes/twentysixteen/css/editor-blocks.css @@ -248,6 +248,11 @@ Description: Used to style blocks in the editor. padding: 0; } +.editor-styles-wrapper ol.has-background, +.editor-styles-wrapper ul.has-background { + padding: 1.25em 2.375em; +} + /* Quotes */ .rtl .editor-block-list__block blockquote { diff --git a/wp-includes/version.php b/wp-includes/version.php index 9607dd95ed..7184723454 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-55965'; +$wp_version = '6.3-alpha-55966'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.