CSS fixes for blender.org, nos.nl and patreon.com - firefox-fix-web - Firefox extension: fix web
 (HTM) git clone git://git.codemadness.org/firefox-fix-web
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit fba6d30d36b4ca0757a9da9c7f2f556d38191146
 (DIR) parent dbb34e642098e920d06b927d40255f2cb3affe4a
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Fri,  2 Aug 2019 12:43:00 +0200
       
       CSS fixes for blender.org, nos.nl and patreon.com
       
       Diffstat:
         M extension/manifest.json             |      12 ++++++++++++
         A extension/site/blender.css          |       3 +++
         A extension/site/nos.css              |       3 +++
         A extension/site/patreon.css          |       7 +++++++
       
       4 files changed, 25 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/extension/manifest.json b/extension/manifest.json
       @@ -65,6 +65,18 @@
                        {
                                "matches": [ "*://old.reddit.com/*" ],
                                "css": [ "site/reddit.css" ]
       +                },
       +                {
       +                        "matches": [ "*://*.patreon.com/*" ],
       +                        "css": [ "site/patreon.css" ]
       +                },
       +                {
       +                        "matches": [ "*://*.nos.nl/*", "*://nos.nl/*" ],
       +                        "css": [ "site/nos.css" ]
       +                },
       +                {
       +                        "matches": [ "*://*.blender.org/*" ],
       +                        "css": [ "site/blender.css" ]
                        }
                ]
        }
 (DIR) diff --git a/extension/site/blender.css b/extension/site/blender.css
       @@ -0,0 +1,3 @@
       +#isolated {
       +        display: none !important;
       +}
 (DIR) diff --git a/extension/site/nos.css b/extension/site/nos.css
       @@ -0,0 +1,3 @@
       +#ccm_notification {
       +        display: none !important;
       +}
 (DIR) diff --git a/extension/site/patreon.css b/extension/site/patreon.css
       @@ -0,0 +1,7 @@
       +* {
       +        filter: none !important;
       +}
       +
       +div[data-focus-lock-disabled="false"] {
       +        display: none !important;
       +}