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
This commit is contained in:
desrosj 2018-12-15 17:14:46 +00:00
parent fd7d1f576c
commit 497dfe7d5f
2 changed files with 3 additions and 3 deletions

View File

@ -223,11 +223,11 @@ sub {
vertical-align: baseline;
}
sub {
sup {
top: -6px;
}
sup {
sub {
bottom: -3px;
}

View File

@ -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.