Skip to content

Commit 6b76bda

Browse files
committed
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.
1 parent 91175dc commit 6b76bda

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

web/debugger.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@
2222
font: message-box;
2323
}
2424
#PDFBug {
25-
background-color: rgb(255 255 255);
25+
color-scheme: only light;
26+
27+
background-color: white;
28+
color: black;
2629
border: 1px solid rgb(102 102 102);
2730
position: fixed;
2831
top: 32px;

0 commit comments

Comments
 (0)