Improvements to uBO logger
This commit is contained in:
parent
920cd60676
commit
4645c126fa
|
@ -97,12 +97,14 @@
|
|||
}
|
||||
|
||||
/* Darker Red */
|
||||
body.advancedUser #firewallContainer > div > span.blockRule.ownRule {
|
||||
body.advancedUser #firewallContainer > div > span.blockRule.ownRule,
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action.own.block {
|
||||
background-color: #ab0000 !important;
|
||||
}
|
||||
|
||||
/* Lighter Red */
|
||||
body.advancedUser #firewallContainer > div > span.blockRule {
|
||||
body.advancedUser #firewallContainer > div > span.blockRule,
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action > span.block {
|
||||
background-color: #dda0a2 !important;
|
||||
}
|
||||
|
||||
|
@ -114,12 +116,14 @@
|
|||
|
||||
|
||||
/* Darker Green */
|
||||
body.advancedUser #firewallContainer > div > span.allowRule.ownRule {
|
||||
body.advancedUser #firewallContainer > div > span.allowRule.ownRule,
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action.own.allow {
|
||||
background-color: #229400 !important;
|
||||
}
|
||||
|
||||
/* Lighter Green */
|
||||
body.advancedUser #firewallContainer > div > span.allowRule {
|
||||
body.advancedUser #firewallContainer > div > span.allowRule,
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action > span.allow {
|
||||
background-color: #95ca8a !important;
|
||||
|
||||
}
|
||||
|
@ -131,7 +135,8 @@
|
|||
}
|
||||
|
||||
/* Darker Blue */
|
||||
body.advancedUser #firewallContainer > div > span.noopRule.ownRule {
|
||||
body.advancedUser #firewallContainer > div > span.noopRule.ownRule,
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action.own.noop {
|
||||
background-color: #0c46a7 !important;
|
||||
}
|
||||
|
||||
|
@ -141,7 +146,8 @@
|
|||
}
|
||||
|
||||
/* Lighter Blue */
|
||||
body.advancedUser #firewallContainer > div > span.noopRule {
|
||||
body.advancedUser #firewallContainer > div > span.noopRule,
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action > span.noop {
|
||||
background-color: #65bdfb !important;
|
||||
}
|
||||
|
||||
|
@ -252,6 +258,82 @@
|
|||
|
||||
}
|
||||
|
||||
/* Logger */
|
||||
.permatoolbar {
|
||||
background-color: var(--primary-dark-color) !important;
|
||||
}
|
||||
|
||||
.permatoolbar .button,
|
||||
.permatoolbar #refresh {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.permatoolbar .button:hover,
|
||||
.permatoolbar #refresh {
|
||||
background-color: var(--grey-60) !important;
|
||||
}
|
||||
|
||||
#netInspector tr.blocked {
|
||||
background-color: rgb(75,49,55) !important;
|
||||
color: rgb(255,148,148) !important;
|
||||
}
|
||||
|
||||
#netInspector #filterInput,
|
||||
#netInspector #maxEntries {
|
||||
-moz-appearance: none !important;
|
||||
background: var(--mid-way-color) !important;
|
||||
color: var(--primary-light-color) !important;
|
||||
border: 1px solid var(--light-accent-color) !important;
|
||||
padding: 5px 5px 5px 5px !important;
|
||||
}
|
||||
|
||||
#netInspector tr.cosmetic, #netInspector tr.redirect {
|
||||
background-color: rgb(68,57,31) !important;
|
||||
color: rgb(252,225,159) !important;
|
||||
}
|
||||
|
||||
body:not(.popupOn) #netInspector tr.canMtx td:nth-of-type(2):hover,
|
||||
#netInspector tr.cat_net td:nth-of-type(4):hover {
|
||||
background: var(--dark-accent) !important;
|
||||
}
|
||||
|
||||
.modalDialog .dialog {
|
||||
background-color: var(--dark-accent) !important;
|
||||
border: 2px solid var(--dark-accent) !important;
|
||||
}
|
||||
|
||||
#netFilteringDialog .dialog > div.headers > span.header.selected {
|
||||
background-color: var(--dark-accent) !important;
|
||||
color: var(--primary-light-color) !important;
|
||||
border-color: var(--mid-way-color) !important;
|
||||
}
|
||||
|
||||
#netFilteringDialog .dialog > div.headers > span.header {
|
||||
background-color: var(--primary-dark-color) !important;
|
||||
border-color: var(--mid-way-color) !important;
|
||||
}
|
||||
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry {
|
||||
background-color: var(--mid-way-color) !important;
|
||||
border-color: var(--light-accent-color) !important;
|
||||
}
|
||||
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td:first-of-type {
|
||||
border-color: var(--light-accent-color) !important;
|
||||
}
|
||||
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic > table.toolbar #saveRules {
|
||||
background-color: var(--mid-way-color) !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
body #netInspector td {
|
||||
border-color: var(--light-accent-color) !important;
|
||||
}
|
||||
|
||||
#netInspector tr.maindoc {
|
||||
background-color: var(--dark-accent) !important;
|
||||
color: var(--grey-30) !important;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
124
userContent.css
124
userContent.css
|
@ -1156,7 +1156,7 @@
|
|||
/*! Alters the webextension Decentraleyes
|
||||
IMPORTANT: change the Internal UUID */
|
||||
|
||||
@-moz-document url-prefix("moz-extension://20cadb98-5f0e-d748-9a3b-a1eaf7c640f6/") {
|
||||
@-moz-document url-prefix("moz-extension://decentraleyes_UUID/") {
|
||||
body {
|
||||
background-color: var(--mid-way-color) !important;
|
||||
color: var(--primary-light-color) !important;
|
||||
|
@ -1175,7 +1175,7 @@
|
|||
/*! Alters the webextension HTTPS Everywhere
|
||||
IMPORTANT: change the Internal UUID */
|
||||
|
||||
@-moz-document url-prefix("moz-extension://897dfa7c-fa54-be49-996c-594df8db2260/") {
|
||||
@-moz-document url-prefix("moz-extension://https_everywhere_UUID/") {
|
||||
body {
|
||||
color: var(--primary-light-color) !important;
|
||||
background: var(--mid-way-color) !important;
|
||||
|
@ -1196,7 +1196,7 @@
|
|||
/*! Alters the webextension Multi-Account Containers
|
||||
IMPORTANT: change the Internal UUID in BOTH locations */
|
||||
|
||||
@-moz-document url-prefix("moz-extension://6b51b3b1-d8eb-694b-97b5-4e7163a2284d/") {
|
||||
@-moz-document url-prefix("moz-extension://multi_account_containers_UUID/") {
|
||||
html body div#container-panel.panel.container-panel,
|
||||
.column-panel-content {
|
||||
background: var(--mid-way-color) !important;
|
||||
|
@ -1308,7 +1308,7 @@
|
|||
/*! Alters the webextension Multi-Account Containers
|
||||
IMPORTANT: change the Internal UUID in BOTH locations */
|
||||
|
||||
@-moz-document url-prefix("moz-extension://6b51b3b1-d8eb-694b-97b5-4e7163a2284d/confirm-page") {
|
||||
@-moz-document url-prefix("moz-extension://multi_account_containers_UUID/confirm-page") {
|
||||
body {
|
||||
background-color: var(--primary-dark-color) !important;
|
||||
}
|
||||
|
@ -1347,7 +1347,7 @@
|
|||
/*! Alters the webextension Multiple Tab Handler
|
||||
IMPORTANT: change the Internal UUID */
|
||||
|
||||
@-moz-document url-prefix("moz-extension://cd5adf97-491d-f44b-9ea2-d2417d781589/") {
|
||||
@-moz-document url-prefix("moz-extension://multiple_tab_handler_UUID/") {
|
||||
h1,
|
||||
p,
|
||||
ul,
|
||||
|
@ -1358,7 +1358,7 @@
|
|||
/*! Alters the webextension Neat URL
|
||||
IMPORTANT: change the Internal UUID */
|
||||
|
||||
@-moz-document url-prefix("moz-extension://2b51bd1f-a120-ea4b-9c78-2b21416143d8/") {
|
||||
@-moz-document url-prefix("moz-extension://neat_url_UUID/") {
|
||||
label,
|
||||
h2,
|
||||
body {
|
||||
|
@ -1497,7 +1497,7 @@
|
|||
/*! Alters the webextension Request Control
|
||||
IMPORTANT: change the Internal UUID */
|
||||
|
||||
@-moz-document url-prefix("moz-extension://ed3f80c9-0ccb-ca41-bd62-f71a9fb72d27/") {
|
||||
@-moz-document url-prefix("moz-extension://request_control_UUID/") {
|
||||
body {
|
||||
background-color: var(--primary-dark-color) !important;
|
||||
color: var(--primary-light-color) !important;
|
||||
|
@ -1587,7 +1587,7 @@
|
|||
/*! Alters the webextension Skip Redirect
|
||||
IMPORTANT: change the Internal UUID */
|
||||
|
||||
@-moz-document url-prefix("moz-extension://b4b0ef21-3b88-e547-841a-b671a44bdfa7/") {
|
||||
@-moz-document url-prefix("moz-extension://skip_redirect_UUID/") {
|
||||
body {
|
||||
background: var(--mid-way-color) !important;
|
||||
color: var(--primary-light-color) !important;
|
||||
|
@ -1656,7 +1656,7 @@
|
|||
/*! Alters the webextension Tree Style Tab
|
||||
IMPORTANT: change the Internal UUID in BOTH locations */
|
||||
|
||||
@-moz-document url-prefix("moz-extension://2a3d122c-dc21-7f4c-a805-82cbd472de98/") {
|
||||
@-moz-document url-prefix("moz-extension://tree_style_tab_UUID/") {
|
||||
p,
|
||||
ul {
|
||||
color: var(--primary-light-color) !important;
|
||||
|
@ -1701,7 +1701,7 @@
|
|||
/*! Alters the webextension Tree Style Tab
|
||||
IMPORTANT: change the Internal UUID in BOTH locations */
|
||||
|
||||
@-moz-document url-prefix("moz-extension://2a3d122c-dc21-7f4c-a805-82cbd472de98/resources/group-tab.html") {
|
||||
@-moz-document url-prefix("moz-extension://tree_style_tab_UUID/resources/group-tab.html") {
|
||||
:root {
|
||||
background: var(--primary-dark-color) !important;
|
||||
color: ButtonText;
|
||||
|
@ -1714,7 +1714,7 @@
|
|||
/*! Alters the webextension uBlock Origin
|
||||
IMPORTANT: change the Internal UUID */
|
||||
|
||||
@-moz-document url-prefix("moz-extension://de835161-ee69-c14d-9940-203fbacf2276/") {
|
||||
@-moz-document url-prefix("moz-extension://ublock_origin_UUID/") {
|
||||
/* header */
|
||||
|
||||
#appinfo {
|
||||
|
@ -1823,13 +1823,15 @@
|
|||
|
||||
/* Darker Red */
|
||||
|
||||
body.advancedUser #firewallContainer > div > span.blockRule.ownRule {
|
||||
body.advancedUser #firewallContainer > div > span.blockRule.ownRule,
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action.own.block {
|
||||
background-color: #ab0000 !important;
|
||||
}
|
||||
|
||||
/* Lighter Red */
|
||||
|
||||
body.advancedUser #firewallContainer > div > span.blockRule {
|
||||
body.advancedUser #firewallContainer > div > span.blockRule,
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action > span.block {
|
||||
background-color: #dda0a2 !important;
|
||||
}
|
||||
|
||||
|
@ -1843,13 +1845,15 @@
|
|||
|
||||
/* Darker Green */
|
||||
|
||||
body.advancedUser #firewallContainer > div > span.allowRule.ownRule {
|
||||
body.advancedUser #firewallContainer > div > span.allowRule.ownRule,
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action.own.allow {
|
||||
background-color: #229400 !important;
|
||||
}
|
||||
|
||||
/* Lighter Green */
|
||||
|
||||
body.advancedUser #firewallContainer > div > span.allowRule {
|
||||
body.advancedUser #firewallContainer > div > span.allowRule,
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action > span.allow {
|
||||
background-color: #95ca8a !important;
|
||||
}
|
||||
|
||||
|
@ -1863,7 +1867,8 @@
|
|||
|
||||
/* Darker Blue */
|
||||
|
||||
body.advancedUser #firewallContainer > div > span.noopRule.ownRule {
|
||||
body.advancedUser #firewallContainer > div > span.noopRule.ownRule,
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action.own.noop {
|
||||
background-color: #0c46a7 !important;
|
||||
}
|
||||
|
||||
|
@ -1875,7 +1880,8 @@
|
|||
|
||||
/* Lighter Blue */
|
||||
|
||||
body.advancedUser #firewallContainer > div > span.noopRule {
|
||||
body.advancedUser #firewallContainer > div > span.noopRule,
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td > div.action > span.noop {
|
||||
background-color: #65bdfb !important;
|
||||
}
|
||||
|
||||
|
@ -1996,6 +2002,86 @@
|
|||
background: var(--mid-way-color) !important;
|
||||
color: var(--primary-light-color) !important;
|
||||
}
|
||||
|
||||
/* Logger */
|
||||
|
||||
.permatoolbar {
|
||||
background-color: var(--primary-dark-color) !important;
|
||||
}
|
||||
|
||||
.permatoolbar .button,
|
||||
.permatoolbar #refresh {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.permatoolbar .button:hover,
|
||||
.permatoolbar #refresh {
|
||||
background-color: var(--grey-60) !important;
|
||||
}
|
||||
|
||||
#netInspector tr.blocked {
|
||||
background-color: rgb(75,49,55) !important;
|
||||
color: rgb(255,148,148) !important;
|
||||
}
|
||||
|
||||
#netInspector #filterInput,
|
||||
#netInspector #maxEntries {
|
||||
-moz-appearance: none !important;
|
||||
background: var(--mid-way-color) !important;
|
||||
color: var(--primary-light-color) !important;
|
||||
border: 1px solid var(--light-accent-color) !important;
|
||||
padding: 5px 5px 5px 5px !important;
|
||||
}
|
||||
|
||||
#netInspector tr.cosmetic,
|
||||
#netInspector tr.redirect {
|
||||
background-color: rgb(68,57,31) !important;
|
||||
color: rgb(252,225,159) !important;
|
||||
}
|
||||
|
||||
body:not(.popupOn) #netInspector tr.canMtx td:nth-of-type(2):hover,
|
||||
#netInspector tr.cat_net td:nth-of-type(4):hover {
|
||||
background: var(--dark-accent) !important;
|
||||
}
|
||||
|
||||
.modalDialog .dialog {
|
||||
background-color: var(--dark-accent) !important;
|
||||
border: 2px solid var(--dark-accent) !important;
|
||||
}
|
||||
|
||||
#netFilteringDialog .dialog > div.headers > span.header.selected {
|
||||
background-color: var(--dark-accent) !important;
|
||||
color: var(--primary-light-color) !important;
|
||||
border-color: var(--mid-way-color) !important;
|
||||
}
|
||||
|
||||
#netFilteringDialog .dialog > div.headers > span.header {
|
||||
background-color: var(--primary-dark-color) !important;
|
||||
border-color: var(--mid-way-color) !important;
|
||||
}
|
||||
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry {
|
||||
background-color: var(--mid-way-color) !important;
|
||||
border-color: var(--light-accent-color) !important;
|
||||
}
|
||||
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic tr.entry > td:first-of-type {
|
||||
border-color: var(--light-accent-color) !important;
|
||||
}
|
||||
|
||||
#netFilteringDialog .dialog > div.containers > div.dynamic > table.toolbar #saveRules {
|
||||
background-color: var(--mid-way-color) !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
body #netInspector td {
|
||||
border-color: var(--light-accent-color) !important;
|
||||
}
|
||||
|
||||
#netInspector tr.maindoc {
|
||||
background-color: var(--dark-accent) !important;
|
||||
color: var(--grey-30) !important;
|
||||
}
|
||||
}
|
||||
/*! Alters the webextension uBO-Scope
|
||||
IMPORTANT: change the Internal UUID */
|
||||
|
@ -2057,7 +2143,7 @@
|
|||
/*! Alters the webextension uMatrix
|
||||
IMPORTANT: change the Internal UUID */
|
||||
|
||||
@-moz-document url-prefix("moz-extension://9eba7fab-892c-7b42-a57e-b876d4196d70/") {
|
||||
@-moz-document url-prefix("moz-extension://umatrix_UUID/") {
|
||||
body[dir="ltr"] {
|
||||
background-color: var(--primary-dark-color) !important;
|
||||
color: var(--primary-light-color) !important;
|
||||
|
@ -2308,7 +2394,7 @@
|
|||
/*! Alters the webextension Vim Vixen
|
||||
IMPORTANT: change the Internal UUID */
|
||||
|
||||
@-moz-document url-prefix("moz-extension://d4da3fda-d6b2-634a-af91-0d8b4f6fa8d1/") {
|
||||
@-moz-document url-prefix("moz-extension://vim_vixen_UUID/") {
|
||||
/* Top Border */
|
||||
|
||||
.vimvixen-console-command-wrapper {
|
||||
|
|
Loading…
Reference in New Issue