From e8eaacd1138b86657dc2bcb6697f7eb9a0514747 Mon Sep 17 00:00:00 2001 From: Damien Picard Date: Thu, 20 Jul 2023 23:21:54 +0200 Subject: [PATCH] Fix color missing in CSS for inserted parts of a message diff When showing diffs in message editions, only the deleted parts got highlighted in red, the inserted parts did not get colored green. Fixes infrastructure/blender-projects-platform#63 --- public/css/theme-bthree-dark.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/css/theme-bthree-dark.css b/public/css/theme-bthree-dark.css index a25b456..fdefc51 100644 --- a/public/css/theme-bthree-dark.css +++ b/public/css/theme-bthree-dark.css @@ -456,7 +456,8 @@ --color-syntax-GenericDeleted-bg: #5f3737; --color-syntax-GenericEmph: #ddee30; --color-syntax-GenericHeading: #ffaa10; - --color-syntax-GenericInserted: #3a523a; + --color-syntax-GenericInserted-text: #fff; + --color-syntax-GenericInserted-bg: #3a523a; --color-syntax-GenericOutput: #777e94; --color-syntax-GenericPrompt: #ebdbb2; --color-syntax-GenericError: #ff4433; -- 2.30.2