From 497dfe7d5fd0c01967140625c0f5d5a88423c83e Mon Sep 17 00:00:00 2001 From: desrosj Date: Sat, 15 Dec 2018 17:14:46 +0000 Subject: [PATCH] Twenty Sixteen: Fix superscript and subscript. When using the block-based editor in Twenty Sixteen, superscript is displaying below the baseline and subscript is displaying above the baseline. This is the opposite of what should occur. This reverses the two to display correctly. Props greg-raven, torontodigits, JDTrower. Fixes: #44776. Built from https://develop.svn.wordpress.org/branches/5.0@44210 git-svn-id: http://core.svn.wordpress.org/branches/5.0@44040 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentysixteen/css/editor-style.css | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-content/themes/twentysixteen/css/editor-style.css b/wp-content/themes/twentysixteen/css/editor-style.css index 305519586c..ed48ce7f47 100644 --- a/wp-content/themes/twentysixteen/css/editor-style.css +++ b/wp-content/themes/twentysixteen/css/editor-style.css @@ -223,11 +223,11 @@ sub { vertical-align: baseline; } -sub { +sup { top: -6px; } -sup { +sub { bottom: -3px; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 6b77921b37..682206c10e 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-44209'; +$wp_version = '5.0.2-alpha-44210'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.