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
This commit is contained in:
parent
0dd3e7e33e
commit
d294597e6e
|
@ -166,6 +166,10 @@ td {
|
||||||
padding-left: 7px;
|
padding-left: 7px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.entry-content p span[id^="more-"] {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 6.5 Galleries
|
* 6.5 Galleries
|
||||||
|
|
|
@ -1261,6 +1261,10 @@ a.post-thumbnail:hover {
|
||||||
padding: 12px 10px 0;
|
padding: 12px 10px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.site-content .entry-content {
|
||||||
|
padding-top: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
.page .entry-content {
|
.page .entry-content {
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
|
@ -1345,6 +1349,34 @@ a.post-thumbnail:hover {
|
||||||
white-space: nowrap;
|
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 */
|
/* Mediaelements */
|
||||||
|
|
||||||
.hentry .mejs-container,
|
.hentry .mejs-container,
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue