From c03b6040fe0d9a3292e0139e702267628d27d16a Mon Sep 17 00:00:00 2001 From: ianbelanger Date: Thu, 16 Apr 2020 19:38:07 +0000 Subject: [PATCH] Bundled Themes: Twenty Twenty inline images in list blocks are not positioned correctly. Fixes the alignment of inline images in list blocks to match the way they look in the editor. Props poena, mayankmajeji, JavierCasares. Fixes #49793. Built from https://develop.svn.wordpress.org/trunk@47590 git-svn-id: http://core.svn.wordpress.org/trunk@47365 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentytwenty/style-rtl.css | 4 ++++ wp-content/themes/twentytwenty/style.css | 4 ++++ wp-includes/version.php | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/twentytwenty/style-rtl.css b/wp-content/themes/twentytwenty/style-rtl.css index e22d1ffd79..a1214bafcb 100644 --- a/wp-content/themes/twentytwenty/style-rtl.css +++ b/wp-content/themes/twentytwenty/style-rtl.css @@ -3484,6 +3484,10 @@ figure.wp-block-table.is-style-stripes { line-height: 1.4; } +.entry-content li img { + display: inline-block; +} + .entry-content h1, .entry-content h2, .entry-content h3, diff --git a/wp-content/themes/twentytwenty/style.css b/wp-content/themes/twentytwenty/style.css index 8a075b9eca..0ebfa46067 100644 --- a/wp-content/themes/twentytwenty/style.css +++ b/wp-content/themes/twentytwenty/style.css @@ -3506,6 +3506,10 @@ figure.wp-block-table.is-style-stripes { line-height: 1.4; } +.entry-content li img { + display: inline-block; +} + .entry-content h1, .entry-content h2, .entry-content h3, diff --git a/wp-includes/version.php b/wp-includes/version.php index a37fbc47e8..99ef620305 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-alpha-47589'; +$wp_version = '5.5-alpha-47590'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.