diff --git a/README.md b/README.md index a7f7e3d..47bbb1c 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,7 @@ Tweaks for the following webextensions have been made: * HTTPSEverywhere * Multi-Account Containers * Multiple Tabs Handler +* NoScript * Request Control * Skip Redirect * Smart HTTPS diff --git a/userContent-files/webextension-tweaks/noscript.css b/userContent-files/webextension-tweaks/noscript.css new file mode 100644 index 0000000..a0a4f40 --- /dev/null +++ b/userContent-files/webextension-tweaks/noscript.css @@ -0,0 +1,60 @@ +/*! Alters the webextension NoScript + IMPORTANT: change the Internal UUID */ + +@-moz-document url-prefix("moz-extension://856ddafd-d0a5-f04e-b493-1c651b88b555/") { + body{ + background: var(--grey-60) !important; + } + + #top { + border-bottom: 0.06em solid var(--grey-50) !important; + } + + #top #close, + #top #reload, + #top #options, + #top #revoke-temp, + #top #temp-allow-page { + background-color: var(--grey-60) !important; + } + + .site .url[data-key="secure"] .domain, .site .url[data-key="secure"] .sub, .site .url[data-key="full"] span { + color: var(--primary-light-color) !important; + } + + .sites > tr:nth-child(2n) { + background: var(--grey-60) !important; + } + + .sites > tr:nth-child(2n+1) { + background: var(--grey-70) !important; + } + + .presets input.preset:checked, #presets input.preset { + color: var(--primary-light-color) !important; + background-color: var(--grey-80) !important; + } + .presets label.preset { + color: var(--primary-light-color) !important; + } + + #sect-general { + color: var(--primary-light-color) !important; + } + + button, + input[type="text"] { + -moz-appearance: none !important; + background-color: var(--grey-70) !important; + border: 1px solid var(--grey-50) !important; + color: var(--primar-light-color) !important; + } + #top #close, + #top #reload, + #top #options, + #top #revoke-temp, + #top #temp-allow-page { + background-color: var(--grey-60) !important; + border: none !important; + } +} diff --git a/userContent.css b/userContent.css index cccd971..862cda4 100644 --- a/userContent.css +++ b/userContent.css @@ -1176,6 +1176,71 @@ color: var(--primary-light-color) !important; } } +/*! Alters the webextension NoScript + IMPORTANT: change the Internal UUID */ + +@-moz-document url-prefix("moz-extension://856ddafd-d0a5-f04e-b493-1c651b88b555/") { + body { + background: var(--grey-60) !important; + } + + #top { + border-bottom: 0.06em solid var(--grey-50) !important; + } + + #top #close, + #top #reload, + #top #options, + #top #revoke-temp, + #top #temp-allow-page { + background-color: var(--grey-60) !important; + } + + .site .url[data-key="secure"] .domain, + .site .url[data-key="secure"] .sub, + .site .url[data-key="full"] span { + color: var(--primary-light-color) !important; + } + + .sites > tr:nth-child(2n) { + background: var(--grey-60) !important; + } + + .sites > tr:nth-child(2n+1) { + background: var(--grey-70) !important; + } + + .presets input.preset:checked, + #presets input.preset { + color: var(--primary-light-color) !important; + background-color: var(--grey-80) !important; + } + + .presets label.preset { + color: var(--primary-light-color) !important; + } + + #sect-general { + color: var(--primary-light-color) !important; + } + + button, + input[type="text"] { + -moz-appearance: none !important; + background-color: var(--grey-70) !important; + border: 1px solid var(--grey-50) !important; + color: var(--primar-light-color) !important; + } + + #top #close, + #top #reload, + #top #options, + #top #revoke-temp, + #top #temp-allow-page { + background-color: var(--grey-60) !important; + border: none !important; + } +} /*! Alters the webextension Request Control IMPORTANT: change the Internal UUID */