From 341c1912f73c41f69475b963042874c3fc3a8fd1 Mon Sep 17 00:00:00 2001 From: yh54321 Date: Fri, 14 Dec 2018 03:01:08 -0500 Subject: [PATCH] Patch for heading bug fix Patches problem in fix PR #309. Another solution is to revert #309 and to delete line 301 (if it is not needed). --- folioreader/src/main/assets/css/Style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/folioreader/src/main/assets/css/Style.css b/folioreader/src/main/assets/css/Style.css index a2cfab536..8af772b8f 100755 --- a/folioreader/src/main/assets/css/Style.css +++ b/folioreader/src/main/assets/css/Style.css @@ -297,7 +297,11 @@ body { -webkit-hyphens: auto !important; hyphens: auto !important; } -:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) > p, span, div { +:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) > span { + font-size: 1rem; + line-height: 1.5 !important; +} +p, div { font-size: 1rem; line-height: 1.5 !important; }