From 55c5fd278331f5f4336616d090ed066715184b0f Mon Sep 17 00:00:00 2001 From: abaevbog Date: Thu, 29 Feb 2024 00:12:42 -0500 Subject: [PATCH] do not change input's colors in dark mode (#3769) Hardcode transparent background and black text color for inputs. Otherwise, the inputs end up with dark background and white text which does not work with the rest of the dialog that always has white background. This is temporary until the rest of the dialog works with the dark mode. Fixes: #3768 --- chrome/skin/default/zotero/integration.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/chrome/skin/default/zotero/integration.css b/chrome/skin/default/zotero/integration.css index 119d079407..8676de25b5 100644 --- a/chrome/skin/default/zotero/integration.css +++ b/chrome/skin/default/zotero/integration.css @@ -117,6 +117,9 @@ box-sizing: border-box; height: 15px; margin: 0; + /* Keep the background and text color unchanged in dark mode */ + background-color: transparent; + color: black; } .citation-dialog span {