From 0e2fb903a5ffeba666f594cf99e10b197e64ac50 Mon Sep 17 00:00:00 2001 From: Stuart Breckenridge Date: Thu, 16 Jan 2025 08:16:43 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Stops=20footnote=20links=20being?= =?UTF-8?q?=20inadvertently=20hidden?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Stops `display: none` applying to `.newsfoot-footnote-popover a[href*='#fn’]`. This was indavertently hiding `` elements where the href contains `#fn`…thus a link inside a footnote that links to another footnote was being hidden. Fixes #4485 --- Shared/Article Rendering/core.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Shared/Article Rendering/core.css b/Shared/Article Rendering/core.css index 64d5ed46f..5704d97f6 100644 --- a/Shared/Article Rendering/core.css +++ b/Shared/Article Rendering/core.css @@ -114,8 +114,7 @@ img[src*="share-buttons"] { .newsfoot-footnote-popover .reversefootnote, .newsfoot-footnote-popover .footnoteBackLink, -.newsfoot-footnote-popover .footnote-return, -.newsfoot-footnote-popover a[href*='#fn'] { +.newsfoot-footnote-popover .footnote-return { display: none; }