From 77b797073ffac686f667f00b190aa92f0f210f99 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Tue, 18 Dec 2018 23:11:25 +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. Merges [44210] into trunk. Fixes: #44776. git-svn-id: https://develop.svn.wordpress.org/trunk@44311 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentysixteen/css/editor-style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-content/themes/twentysixteen/css/editor-style.css b/src/wp-content/themes/twentysixteen/css/editor-style.css index 305519586c..ed48ce7f47 100644 --- a/src/wp-content/themes/twentysixteen/css/editor-style.css +++ b/src/wp-content/themes/twentysixteen/css/editor-style.css @@ -223,11 +223,11 @@ sub { vertical-align: baseline; } -sub { +sup { top: -6px; } -sup { +sub { bottom: -3px; }