From fc64864b157d5d0aadcc140e0b27bd72d4567044 Mon Sep 17 00:00:00 2001 From: "maosheng.wei" Date: Mon, 5 Jun 2023 14:41:50 +0800 Subject: [PATCH] FIX: [STUDIO-2947] Privacy terms with white background and white text Change-Id: I54fdef6300ef7ae0413796c5f685ef7499bb8ef4 --- resources/tooltip/privacyupdate.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/tooltip/privacyupdate.html b/resources/tooltip/privacyupdate.html index c67ccf83f..c76e432b2 100644 --- a/resources/tooltip/privacyupdate.html +++ b/resources/tooltip/privacyupdate.html @@ -23,7 +23,8 @@ function SwitchDarkMode(is_dark_mode) { - document.getElementById("content").style.backgroundColor = is_dark_mode ? "#36363C" : "#F8F8F8"; + document.getElementById("content").style.backgroundColor = is_dark_mode ? "#36363C" : "#F8F8F8"; + document.getElementById("content").style.color = is_dark_mode ? "#FFFFFF" : "#000000"; }