From 2fa1a2f29fe390f2e31e2b987aedd6de86ef6107 Mon Sep 17 00:00:00 2001 From: laurelfulford Date: Fri, 28 Dec 2018 19:19:45 +0000 Subject: [PATCH] Twenty Nineteen: Remove underline from "Continue Reading" arrow. The "Continue Reading" link that's generated by the More block is styled to include an arrow next to the text; that arrow shouldn't inherit the text underline style. This update removes it. Props littlebigthing, kjellr. Fixes #45715. git-svn-id: https://develop.svn.wordpress.org/trunk@44369 602fd350-edb4-49c9-b593-d223f7449a82 --- .../twentynineteen/sass/site/primary/_posts-and-pages.scss | 1 + src/wp-content/themes/twentynineteen/style-rtl.css | 1 + src/wp-content/themes/twentynineteen/style.css | 1 + 3 files changed, 3 insertions(+) diff --git a/src/wp-content/themes/twentynineteen/sass/site/primary/_posts-and-pages.scss b/src/wp-content/themes/twentynineteen/sass/site/primary/_posts-and-pages.scss index ab39a5a5e3..8f65b9c27d 100644 --- a/src/wp-content/themes/twentynineteen/sass/site/primary/_posts-and-pages.scss +++ b/src/wp-content/themes/twentynineteen/sass/site/primary/_posts-and-pages.scss @@ -200,6 +200,7 @@ &:after { content: "\02192"; + display: inline-block; margin-left: 0.5em; } diff --git a/src/wp-content/themes/twentynineteen/style-rtl.css b/src/wp-content/themes/twentynineteen/style-rtl.css index bf926180af..9cf3d84360 100644 --- a/src/wp-content/themes/twentynineteen/style-rtl.css +++ b/src/wp-content/themes/twentynineteen/style-rtl.css @@ -2619,6 +2619,7 @@ body.page .main-navigation { .entry .entry-content .more-link:after { content: "\02192"; + display: inline-block; margin-right: 0.5em; } diff --git a/src/wp-content/themes/twentynineteen/style.css b/src/wp-content/themes/twentynineteen/style.css index 0583f5e7b4..ae1dc49e98 100644 --- a/src/wp-content/themes/twentynineteen/style.css +++ b/src/wp-content/themes/twentynineteen/style.css @@ -2625,6 +2625,7 @@ body.page .main-navigation { .entry .entry-content .more-link:after { content: "\02192"; + display: inline-block; margin-left: 0.5em; }