From e2eebecfc6a72a1ac2285fe4664e5c23d924f2a0 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 27 Sep 2014 08:01:35 +0000 Subject: [PATCH] Bundled themes: Prevent the arrow in "Continue reading" links from wrapping to a second line. props DustinHartzler, dominik.schwind. fixes #27908. git-svn-id: https://develop.svn.wordpress.org/trunk@29771 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentyeleven/style.css | 3 +++ src/wp-content/themes/twentyfourteen/style.css | 4 ++++ src/wp-content/themes/twentyten/style.css | 3 +++ src/wp-content/themes/twentythirteen/style.css | 4 ++++ src/wp-content/themes/twentytwelve/style.css | 3 +++ 5 files changed, 17 insertions(+) diff --git a/src/wp-content/themes/twentyeleven/style.css b/src/wp-content/themes/twentyeleven/style.css index 756ad633ab..6a50996f3b 100644 --- a/src/wp-content/themes/twentyeleven/style.css +++ b/src/wp-content/themes/twentyeleven/style.css @@ -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, diff --git a/src/wp-content/themes/twentyfourteen/style.css b/src/wp-content/themes/twentyfourteen/style.css index d88aed580d..cb004cc2f7 100644 --- a/src/wp-content/themes/twentyfourteen/style.css +++ b/src/wp-content/themes/twentyfourteen/style.css @@ -1336,6 +1336,10 @@ a.post-thumbnail:hover { color: #41a62a; } +.entry-content .more-link { + white-space: nowrap; +} + /* Mediaelements */ .hentry .mejs-container { diff --git a/src/wp-content/themes/twentyten/style.css b/src/wp-content/themes/twentyten/style.css index 10a1a2279a..66ae2a309c 100644 --- a/src/wp-content/themes/twentyten/style.css +++ b/src/wp-content/themes/twentyten/style.css @@ -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; } diff --git a/src/wp-content/themes/twentythirteen/style.css b/src/wp-content/themes/twentythirteen/style.css index 1c5ad6ef3f..1e88183c34 100644 --- a/src/wp-content/themes/twentythirteen/style.css +++ b/src/wp-content/themes/twentythirteen/style.css @@ -1139,6 +1139,10 @@ ul.nav-menu .focus > ul, color: #ea9629; } +.entry-content .more-link { + white-space: nowrap; +} + .entry-content blockquote { font-size: 24px; } diff --git a/src/wp-content/themes/twentytwelve/style.css b/src/wp-content/themes/twentytwelve/style.css index 5b2d8721c5..7e98a9f2d5 100644 --- a/src/wp-content/themes/twentytwelve/style.css +++ b/src/wp-content/themes/twentytwelve/style.css @@ -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,