Bundled themes: Prevent the arrow in "Continue reading" links from wrapping to a second line.
props DustinHartzler, dominik.schwind. fixes #27908. Built from https://develop.svn.wordpress.org/trunk@29771 git-svn-id: http://core.svn.wordpress.org/trunk@29543 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0a4d4a3d93
commit
f35285450a
|
@ -768,6 +768,9 @@ a:hover {
|
|||
.entry-summary {
|
||||
padding: 1.625em 0 0;
|
||||
}
|
||||
.entry-content .more-link {
|
||||
white-space: nowrap;
|
||||
}
|
||||
.entry-content h1,
|
||||
.entry-content h2,
|
||||
.comment-content h1,
|
||||
|
|
|
@ -1336,6 +1336,10 @@ a.post-thumbnail:hover {
|
|||
color: #41a62a;
|
||||
}
|
||||
|
||||
.entry-content .more-link {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* Mediaelements */
|
||||
|
||||
.hentry .mejs-container {
|
||||
|
|
|
@ -605,6 +605,9 @@ div.menu li {
|
|||
clear: both;
|
||||
padding: 12px 0 0 0;
|
||||
}
|
||||
.entry-content .more-link {
|
||||
white-space: nowrap;
|
||||
}
|
||||
#content .entry-summary p:last-child {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
|
|
@ -1139,6 +1139,10 @@ ul.nav-menu .focus > ul,
|
|||
color: #ea9629;
|
||||
}
|
||||
|
||||
.entry-content .more-link {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.entry-content blockquote {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
|
|
@ -805,6 +805,9 @@ article.sticky .featured-post {
|
|||
.comment-content a:visited {
|
||||
color: #9f9f9f;
|
||||
}
|
||||
.entry-content .more-link {
|
||||
white-space: nowrap;
|
||||
}
|
||||
.entry-content ol,
|
||||
.comment-content ol,
|
||||
.entry-content ul,
|
||||
|
|
Loading…
Reference in New Issue