Skip to content

Commit 77b7970

Browse files
committed
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
1 parent 0f349bd commit 77b7970

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/wp-content/themes/twentysixteen/css/editor-style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,11 +223,11 @@ sub {
223223
vertical-align: baseline;
224224
}
225225

226-
sub {
226+
sup {
227227
top: -6px;
228228
}
229229

230-
sup {
230+
sub {
231231
bottom: -3px;
232232
}
233233

0 commit comments

Comments
 (0)