From 86fef30c22582896f468b9cb1b1c8dbd3043e1f5 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Sat, 11 Feb 2023 14:40:15 +0100 Subject: tweak: proton stylesheet --- plugins/style/style.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'plugins/style/style.js') diff --git a/plugins/style/style.js b/plugins/style/style.js index 01524d0..600506f 100644 --- a/plugins/style/style.js +++ b/plugins/style/style.js @@ -23,4 +23,22 @@ if (document.domain == "forum.effectivealtruism.org"){ console.log('Style changed') } +if (document.domain == "mail.proton.me" ){ + var styles = ` + .item-container-row.read, .item-container.read { + background-color: white; + } + .item-container-row.unread, .item-container.unread { + background-color: #E8E8E8; + } + .selection .item-container-row.item-is-selected, .item-container.item-is-selected { + background-color: var(--selection-background-color) !important; + } + ` + var styleSheet = document.createElement('style') + styleSheet.innerText = styles + document.head.appendChild(styleSheet) + console.log('Style changed') +} + document.body.style.visibility = "visible" -- cgit v1.2.3