diff --git a/UserscriptTemplate.user.css b/UserscriptTemplate.user.css index 01e1129..87c2205 100644 --- a/UserscriptTemplate.user.css +++ b/UserscriptTemplate.user.css @@ -1,7 +1,7 @@ /* ==UserStyle== @name UserScript Template @namespace typpi.online -@version 1.0.0 +@version 1.0.1 @description Description @author Nick2bad4u @license UnLicense @@ -9,12 +9,11 @@ ==/UserStyle== */ @-moz-document domain("website.com") { /* Invert colors except images and videos */ - :is( - html:not([stylus-iframe]), - img, - svg, - video - ) { + html, + img, + svg, + video, + iframe { filter: invert(1) hue-rotate(180deg) !important; } }