From 2b30f69ede15236959b533180d5b06219eedc6d7 Mon Sep 17 00:00:00 2001 From: Madis Date: Sun, 11 Mar 2018 12:40:27 +0200 Subject: [PATCH 1/2] Hide HTML5 full screen lock Hides the "secure" lock for HTML 5 full screen popups. --- toolbars/hide-fullscreen-lock.css | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 toolbars/hide-fullscreen-lock.css diff --git a/toolbars/hide-fullscreen-lock.css b/toolbars/hide-fullscreen-lock.css new file mode 100644 index 0000000..ce66274 --- /dev/null +++ b/toolbars/hide-fullscreen-lock.css @@ -0,0 +1,10 @@ +/* + * Hides the HTML5 full screen popup lock icon for secure pages. You can test this on https://permission.site + * + * Contributor(s): Madis0 + */ + +*.pointerlockfswarning[data-identity="verifiedIdentity"]::before, +*.pointerlockfswarning[data-identity="verifiedDomain"]::before { + display: none !important; +} From a19a0c64809838c4702821313f483893b7c29fc5 Mon Sep 17 00:00:00 2001 From: Madis Date: Mon, 9 Apr 2018 19:43:44 +0300 Subject: [PATCH 2/2] Fix for 61 --- toolbars/hide-fullscreen-lock.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toolbars/hide-fullscreen-lock.css b/toolbars/hide-fullscreen-lock.css index ce66274..13ec188 100644 --- a/toolbars/hide-fullscreen-lock.css +++ b/toolbars/hide-fullscreen-lock.css @@ -4,7 +4,7 @@ * Contributor(s): Madis0 */ -*.pointerlockfswarning[data-identity="verifiedIdentity"]::before, -*.pointerlockfswarning[data-identity="verifiedDomain"]::before { +html|*.pointerlockfswarning[data-identity="verifiedIdentity"]::before, +html|*.pointerlockfswarning[data-identity="verifiedDomain"]::before { display: none !important; }