From 809f41f20261963b3dce319c9a0a0e5f16623176 Mon Sep 17 00:00:00 2001 From: laurelfulford Date: Sat, 15 Dec 2018 11:16:46 +0000 Subject: [PATCH] Twenty Seventeen: Remove editor style that prevents images from being resized. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Twenty Seventeen’s editor styles contained an Internet Explorer 8 specific fix that stopped images from being scalable in the editor in other browsers. Since the editor no longer supports IE8, this fix can safely be removed. Props audrasjb, mihaivalentin, subrataemfluence. Fixes #39738. Built from https://develop.svn.wordpress.org/branches/5.0@44205 git-svn-id: http://core.svn.wordpress.org/branches/5.0@44035 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyseventeen/assets/css/editor-style.css | 1 - wp-includes/version.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/wp-content/themes/twentyseventeen/assets/css/editor-style.css b/wp-content/themes/twentyseventeen/assets/css/editor-style.css index ab595a1ece..82dc7067d6 100644 --- a/wp-content/themes/twentyseventeen/assets/css/editor-style.css +++ b/wp-content/themes/twentyseventeen/assets/css/editor-style.css @@ -320,7 +320,6 @@ a img { img { height: auto; /* Make sure images are scaled correctly. */ - width: inherit; /* Make images fill their parent's space. Solves IE8. */ max-width: 100%; /* Adhere to container width. */ } diff --git a/wp-includes/version.php b/wp-includes/version.php index a4d083ed3f..d35c83de37 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0.2-alpha-44204'; +$wp_version = '5.0.2-alpha-44205'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.