From 90ef03daaaf7ceb94bfd1451addd34e4494af680 Mon Sep 17 00:00:00 2001 From: Peter Cai Date: Sun, 12 Apr 2020 08:28:12 +0800 Subject: [PATCH] theme: remove text-shadow on mobile performance is terrible on some mobile browsers --- theme/default/static/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/theme/default/static/style.css b/theme/default/static/style.css index a1c8737..17815d6 100644 --- a/theme/default/static/style.css +++ b/theme/default/static/style.css @@ -367,6 +367,11 @@ h5 { @media screen and (max-width: 600px) { /* From this width, use mobile layout */ + body, html { + /* Performance of text-shadow on some mobile browsers is terrible */ + text-shadow: none; + } + .sidebar { position: relative; float: none;