From 332bf0dfb952cb36546d14bdb70f447c92d9d536 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Mon, 6 Mar 2023 16:23:44 +0530 Subject: [PATCH 1/4] dark body msg --- style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/style.css b/style.css index ac1fb08..ec94b54 100644 --- a/style.css +++ b/style.css @@ -339,6 +339,9 @@ body.theme--dark { --svg-color-third: rgba(255, 255, 255, 0.87); --svg-opacity: 0.74; --svg-color-blue: #087BF9; + #rl-app table { + filter: invert(1) !important; + } } -- GitLab From 88e68bfdc75ebd32464e29aac7a57f2dafb6a59f Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Mon, 6 Mar 2023 16:37:17 +0530 Subject: [PATCH 2/4] dark body msg --- style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index ec94b54..2665098 100644 --- a/style.css +++ b/style.css @@ -339,7 +339,8 @@ body.theme--dark { --svg-color-third: rgba(255, 255, 255, 0.87); --svg-opacity: 0.74; --svg-color-blue: #087BF9; - #rl-app table { + + #rl-app #messageItem table { filter: invert(1) !important; } } -- GitLab From c206194de2a942cd04a0fff991504ff34337d48c Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Mon, 6 Mar 2023 16:52:32 +0530 Subject: [PATCH 3/4] dark body msg --- style.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/style.css b/style.css index 2665098..7c4b4b1 100644 --- a/style.css +++ b/style.css @@ -194,6 +194,7 @@ --svg-color-third: #333333; --svg-opacity: 0.6; --svg-color-blue: #087BF9; + --invertfilter:invert(0); } body.theme--dark { @@ -339,10 +340,7 @@ body.theme--dark { --svg-color-third: rgba(255, 255, 255, 0.87); --svg-opacity: 0.74; --svg-color-blue: #087BF9; - - #rl-app #messageItem table { - filter: invert(1) !important; - } + --invertfilter:invert(1); } @@ -3912,3 +3910,6 @@ html:not(rl-mobile) #rl-app .hideMessageListCheckbox .checkboxCheckAll { #rl-app .messageView .message-fixed-button-toolbar { top: 50px; } + #rl-app #messageItem table { + filter:var(--invertfilter); + } -- GitLab From 7df9b5a2d4aa4f5ef17eb53c1c79edc517b0f28b Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Mon, 6 Mar 2023 16:59:52 +0530 Subject: [PATCH 4/4] dark body msg --- style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/style.css b/style.css index 7c4b4b1..284431a 100644 --- a/style.css +++ b/style.css @@ -3913,3 +3913,7 @@ html:not(rl-mobile) #rl-app .hideMessageListCheckbox .checkboxCheckAll { #rl-app #messageItem table { filter:var(--invertfilter); } + #rl-app #messageItem table tr td table { + filter:invert(var(--invertfilter)); + } + -- GitLab