diff --git a/userContent-files/webextension-tweaks/uBlockOrigin.css b/userContent-files/webextension-tweaks/uBlockOrigin.css index 94b23fb..efd8838 100644 --- a/userContent-files/webextension-tweaks/uBlockOrigin.css +++ b/userContent-files/webextension-tweaks/uBlockOrigin.css @@ -92,6 +92,7 @@ color: var(--primary-light-color) !important; border-color: var(--grey-50) !important; } + /* Darker Red */ body.advancedUser #firewallContainer > div > span.blockRule.ownRule { background-color: #ab0000 !important; @@ -102,8 +103,10 @@ background-color: #dda0a2 !important; } + /* Before Red */ #firewallContainer > div.blocked > span:first-of-type::before, #firewallContainer.minimized > div.isDomain.totalBlocked > span:first-of-type::before { - background-color: #af0202 !important; + background-color: #c87576 !important; + opacity: 1 !important; } @@ -115,10 +118,13 @@ /* Lighter Green */ body.advancedUser #firewallContainer > div > span.allowRule { background-color: #95ca8a !important; + } + /* Before Green */ #firewallContainer > div.allowed > span:first-of-type::before, #firewallContainer.minimized > div.isDomain.totalAllowed > span:first-of-type::before { - background-color: #02af06 !important; + background-color: #7ec26f !important; + opacity: 1 !important; } /* Darker Blue */ @@ -135,6 +141,12 @@ body.advancedUser #firewallContainer > div > span.noopRule { background-color: #65bdfb !important; } + + /* Before Yellow */ + #firewallContainer > div.allowed.blocked > span:first-of-type::before, #firewallContainer.minimized > div.isDomain.totalAllowed.totalBlocked > span:first-of-type::before { + background-color: #cdc16e !important; + opacity: 1 !important; + } /* Color Blind Friendly */ @@ -159,13 +171,13 @@ } /* Dark Noop */ - body.advancedUser #firewallContainer > div > span.noopRule.ownRule { + body.advancedUser #firewallContainer.colorBlind > div > span.noopRule.ownRule { background-color: #2f2e2e !important; } /* Light Noop */ - body.advancedUser #firewallContainer > div > span.noopRule { + body.advancedUser #firewallContainer.colorBlind > div > span.noopRule { background-color: #a1a1a1 !important; } @@ -178,7 +190,7 @@ #firewallContainer.colorBlind > div.blocked > span:first-of-type::before, #firewallContainer.colorBlind.minimized > div.isDomain.totalBlocked > span:first-of-type::before { background-color: #787cab !important; } - + #dashboard-nav-widgets { border-bottom: 1px solid var(--grey-60) !important; background-color: var(--grey-80) !important; diff --git a/userContent.css b/userContent.css index f7e0d73..d7cd88c 100644 --- a/userContent.css +++ b/userContent.css @@ -1269,9 +1269,12 @@ background-color: #dda0a2 !important; } + /* Before Red */ + #firewallContainer > div.blocked > span:first-of-type::before, #firewallContainer.minimized > div.isDomain.totalBlocked > span:first-of-type::before { - background-color: #af0202 !important; + background-color: #c87576 !important; + opacity: 1 !important; } /* Darker Green */ @@ -1286,9 +1289,12 @@ background-color: #95ca8a !important; } + /* Before Green */ + #firewallContainer > div.allowed > span:first-of-type::before, #firewallContainer.minimized > div.isDomain.totalAllowed > span:first-of-type::before { - background-color: #02af06 !important; + background-color: #7ec26f !important; + opacity: 1 !important; } /* Darker Blue */ @@ -1309,6 +1315,14 @@ background-color: #65bdfb !important; } + /* Before Yellow */ + + #firewallContainer > div.allowed.blocked > span:first-of-type::before, + #firewallContainer.minimized > div.isDomain.totalAllowed.totalBlocked > span:first-of-type::before { + background-color: #cdc16e !important; + opacity: 1 !important; + } + /* Color Blind Friendly */ /* Dark Block Color */ @@ -1337,13 +1351,13 @@ /* Dark Noop */ - body.advancedUser #firewallContainer > div > span.noopRule.ownRule { + body.advancedUser #firewallContainer.colorBlind > div > span.noopRule.ownRule { background-color: #2f2e2e !important; } /* Light Noop */ - body.advancedUser #firewallContainer > div > span.noopRule { + body.advancedUser #firewallContainer.colorBlind > div > span.noopRule { background-color: #a1a1a1 !important; }