From d294597e6eb5c08521bac9760093fdeb2256a368 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 8 Oct 2019 01:54:01 +0000 Subject: [PATCH] Twenty Fourteen: Ensure the content after the Read More tag is visible and has the appropriate padding. Props ianbelanger, sabernhardt, slobodanmanic, Quantumstate, Gwendydd, andraganescu, francina. Fixes #28967. Built from https://develop.svn.wordpress.org/trunk@46429 git-svn-id: http://core.svn.wordpress.org/trunk@46227 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyfourteen/rtl.css | 4 +++ wp-content/themes/twentyfourteen/style.css | 32 ++++++++++++++++++++++ wp-includes/version.php | 2 +- 3 files changed, 37 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/twentyfourteen/rtl.css b/wp-content/themes/twentyfourteen/rtl.css index 58d9757915..76dbdb91fb 100644 --- a/wp-content/themes/twentyfourteen/rtl.css +++ b/wp-content/themes/twentyfourteen/rtl.css @@ -166,6 +166,10 @@ td { padding-left: 7px; } +.entry-content p span[id^="more-"] { + float: right; +} + /** * 6.5 Galleries diff --git a/wp-content/themes/twentyfourteen/style.css b/wp-content/themes/twentyfourteen/style.css index 85133472f5..d675748ddc 100644 --- a/wp-content/themes/twentyfourteen/style.css +++ b/wp-content/themes/twentyfourteen/style.css @@ -1261,6 +1261,10 @@ a.post-thumbnail:hover { padding: 12px 10px 0; } +.site-content .entry-content { + padding-top: 22px; +} + .page .entry-content { padding-top: 0; } @@ -1345,6 +1349,34 @@ a.post-thumbnail:hover { white-space: nowrap; } +.entry-content span[id^="more-"] { + display: block; + padding-top: 52px; + margin-top: -76px; +} + +.admin-bar .entry-content span[id^="more-"] { + padding-top: 84px; + margin-top: -108px; +} + +.entry-content span[id^="more-"] + blockquote, +.entry-content span[id^="more-"] + div, +.entry-content span[id^="more-"] + figure, +.entry-content span[id^="more-"] + hr, +.entry-content span[id^="more-"] + ol, +.entry-content span[id^="more-"] + ul, +.entry-content span[id^="more-"] + p, +.entry-content span[id^="more-"] + pre { + margin-top: 24px; +} + +.entry-content p span[id^="more-"] { + width: 1px; + height: 24px; + float: left; +} + /* Mediaelements */ .hentry .mejs-container, diff --git a/wp-includes/version.php b/wp-includes/version.php index 8547b70c24..a75e1bcd9f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-beta2-46428'; +$wp_version = '5.3-beta2-46429'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.