From 39b75b8ba9956b1113590b47cf43b7ff2afa3205 Mon Sep 17 00:00:00 2001 From: Rory O'Day Date: Wed, 2 Nov 2022 19:19:02 -0700 Subject: [PATCH 1/2] Fixed file field font color for dark mode https://github.com/JabRef/jabref/issues/9340 --- src/main/java/org/jabref/gui/Dark.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/jabref/gui/Dark.css b/src/main/java/org/jabref/gui/Dark.css index 4a9f76d6c1b..f53d25734e5 100644 --- a/src/main/java/org/jabref/gui/Dark.css +++ b/src/main/java/org/jabref/gui/Dark.css @@ -170,3 +170,8 @@ .rating > .container > .button.strong { -fx-icon-color: -fx-light-text-color; } + + +.file-row-text { + -fx-text-fill: -fx-light-text-color; +} From a148bf27d64decd46d732c2e0a13d9ec4466c77e Mon Sep 17 00:00:00 2001 From: Rory O'Day Date: Wed, 2 Nov 2022 19:27:49 -0700 Subject: [PATCH 2/2] update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8509b7b0773..65176a4c077 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -46,7 +46,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve - We modified the Directory of Open Access Books (DOAB) fetcher so that it will now also fetch the ISBN when possible. [#8708](https://github.com/JabRef/jabref/issues/8708) ### Fixed - +- We fixed the display of file field adjusting for the dark theme [#9340](https://github.com/JabRef/jabref/issues/9340) - We fixed the display of the "Customize Entry Types" dialogue title [#9198](https://github.com/JabRef/jabref/issues/9198) - We fixed an issue where author names with tilde accents (for example ñ) were marked as "Names are not in the standard BibTex format" [#8071](https://github.com/JabRef/jabref/issues/8071) - We fixed an issue where the possibility to generate a subdatabase from an aux file was writing empty files when called from the commandline [#9115](https://github.com/JabRef/jabref/issues/9115), [forum#3516](https://discourse.jabref.org/t/export-subdatabase-from-aux-file-on-macos-command-line/3516)