From b852d00af0931e82f71a50ba989dcb7838189442 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9line=20S=C3=A8be?= <87119259+CelineSebe@users.noreply.github.com> Date: Fri, 28 Jun 2024 10:39:45 +0200 Subject: [PATCH] [frontend] light mode for the csv mapper test result(#6887) --- .../opencti-front/src/components/ThemeLight.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/opencti-platform/opencti-front/src/components/ThemeLight.ts b/opencti-platform/opencti-front/src/components/ThemeLight.ts index 3d6a7142d31e..79a2cb9831b4 100644 --- a/opencti-platform/opencti-front/src/components/ThemeLight.ts +++ b/opencti-platform/opencti-front/src/components/ThemeLight.ts @@ -165,14 +165,14 @@ const ThemeLight = ( WebkitTextFillColor: '#000000 !important', caretColor: 'transparent !important', WebkitBoxShadow: - '0 0 0 1000px rgba(4, 8, 17, 0.88) inset !important', + '0 0 0 1000px rgba(4, 8, 17, 0.88) inset !important', borderTopLeftRadius: 'inherit', borderTopRightRadius: 'inherit', }, pre: { fontFamily: 'Consolas, monaco, monospace', color: '#000000 !important', - background: `${accent || THEME_LIGHT_DEFAULT_ACCENT} !important`, + background: `${accent} !important`, borderRadius: 4, }, 'pre.light': { @@ -182,8 +182,8 @@ const ThemeLight = ( }, code: { fontFamily: 'Consolas, monaco, monospace', - color: '#000000 !important', - background: `${accent || THEME_LIGHT_DEFAULT_ACCENT} !important`, + color: '#FFFFFF !important', + background: `${accent} !important`, padding: 3, fontSize: 12, fontWeight: 400,