From 8ad4502aade703a36ac073d5dde29e6d86a955e0 Mon Sep 17 00:00:00 2001 From: Dani Palou Date: Tue, 27 Jul 2021 16:05:59 +0200 Subject: [PATCH] MOBILE-3822 mathjax: Disable clicks in links in mathjax preview --- src/theme/components/format-text.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/theme/components/format-text.scss b/src/theme/components/format-text.scss index 325ab0460..0e617a2b8 100644 --- a/src/theme/components/format-text.scss +++ b/src/theme/components/format-text.scss @@ -191,6 +191,11 @@ core-format-text { display: none; } } + + // Disable clicks in links inside MathJax equations. + .core-format-text-content .filter_mathjaxloader_equation .MathJax_Preview a { + pointer-events: none; + } }