disable forced display: block rule for now - firefox-fix-web - Firefox extensio… | |
git clone git://git.codemadness.org/firefox-fix-web | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 5a07b3691ad7f3ca250b0ef6ff4f01dc3705208e | |
parent f16c6a6461d6803d802f45f9628953245c91e530 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Fri, 8 Oct 2021 09:01:07 +0200 | |
disable forced display: block rule for now | |
This rule is intended to force showing the <body>. On ugly sites this is hidden | |
sometimes and enabled using javascript. | |
But I noticed this breaks some sites which are visible but break the layout, | |
like: | |
body { display: flex; } | |
Diffstat: | |
M extension/global/anim.css | 4 ++-- | |
1 file changed, 2 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/extension/global/anim.css b/extension/global/anim.css | |
@@ -4,7 +4,7 @@ | |
} | |
html { | |
- display: block !important; | |
+ /*display: block !important;*/ | |
} | |
/* remove things like fade-in animations */ | |
@@ -16,6 +16,6 @@ body > * { | |
} | |
body { | |
- display: block !important; | |
+ /*display: block !important;*/ | |
visibility: visible !important; | |
} |