From 6b76bdac3ac6e9e80e8c350e54b08ded93370f65 Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Thu, 24 Apr 2025 17:30:18 +0200 Subject: [PATCH] Fix the debugger CSS when using the dark theme (PR 19819 follow-up) Perhaps we should update the debugger CSS to properly account for the light/dark theme, however since that's not UI that end-users ever see we simply force using the light theme for now. --- web/debugger.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web/debugger.css b/web/debugger.css index b9d9f8190..0c64d69b7 100644 --- a/web/debugger.css +++ b/web/debugger.css @@ -22,7 +22,10 @@ font: message-box; } #PDFBug { - background-color: rgb(255 255 255); + color-scheme: only light; + + background-color: white; + color: black; border: 1px solid rgb(102 102 102); position: fixed; top: 32px;