From 09eb4567905802c2933a139293aa51bb86dc9994 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Fri, 23 Jul 2021 11:08:36 +0900 Subject: [PATCH] Fix: Fully Dark Mode - Download popup background at light mode #131 --- userChrome.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/userChrome.css b/userChrome.css index 3a204b6..329daff 100644 --- a/userChrome.css +++ b/userChrome.css @@ -351,8 +351,10 @@ /*= Downloads ==============================================================*/ @-moz-document url("chrome://mozapps/content/downloads/unknownContentType.xhtml") { - :root { - --in-content-page-background: #42414d; + @media (-moz-toolbar-prefers-color-scheme:dark) { + :root { + --in-content-page-background: #42414d; + } } #unknownContentType { color: var(--in-content-page-color) !important;