add support for NoScript #56

This commit is contained in:
overdodactyl 2018-01-13 20:49:19 -07:00
parent 7455a23bf8
commit b322d9160e
3 changed files with 126 additions and 0 deletions

View File

@ -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

View File

@ -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;
}
}

View File

@ -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 */