From 16c792eec4c24308a9c57031dbfcdc5087ee9535 Mon Sep 17 00:00:00 2001 From: Tsz Yin Chan Date: Sat, 22 Oct 2022 19:02:17 +1100 Subject: [PATCH 1/6] Changed the color of found text from red ro green --- src/main/java/org/jabref/gui/entryeditor/EntryEditor.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css b/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css index e53c688a081..3cbe488051b 100644 --- a/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css +++ b/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css @@ -122,7 +122,7 @@ } #bibtexSourceCodeArea .search { - -fx-fill: red; + -fx-fill: green; } #citationsPane { From 75830ba192b0f580b0cd8c414437d0da9d5b5331 Mon Sep 17 00:00:00 2001 From: Tsz Yin Chan Date: Sun, 23 Oct 2022 15:20:35 +1100 Subject: [PATCH 2/6] revert to red color. --- src/main/java/org/jabref/gui/entryeditor/EntryEditor.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css b/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css index 3cbe488051b..e53c688a081 100644 --- a/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css +++ b/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css @@ -122,7 +122,7 @@ } #bibtexSourceCodeArea .search { - -fx-fill: green; + -fx-fill: red; } #citationsPane { From 308640b15920ad1fd2a746a4cb371bfa9524e749 Mon Sep 17 00:00:00 2001 From: Tsz Yin Chan Date: Sun, 23 Oct 2022 15:24:28 +1100 Subject: [PATCH 3/6] Changed the color of found text from red to green --- src/main/java/org/jabref/gui/entryeditor/EntryEditor.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css b/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css index e53c688a081..3cbe488051b 100644 --- a/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css +++ b/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css @@ -122,7 +122,7 @@ } #bibtexSourceCodeArea .search { - -fx-fill: red; + -fx-fill: green; } #citationsPane { From 815870b0ce2329ee8caebbcb70063b799ca72cf4 Mon Sep 17 00:00:00 2001 From: Tsz Yin Chan Date: Sun, 23 Oct 2022 16:29:51 +1100 Subject: [PATCH 4/6] Documented the change in CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ed74a68e2c..490299df93f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,6 +45,8 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve - We fixed an issue where a message about changed metadata would occur on saving although nothing changed. [#9159](https://github.com/JabRef/jabref/issues/9159) - When adding or editing a subgroup it is placed w.r.t. to alphabetical ordering rather than at the end. [koppor#577](https://github.com/koppor/jabref/issues/577) - 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) +- We changed the color of found text from red to green. [koppor#552](https://github.com/koppor/jabref/issues/552) + ### Fixed From a610d74a9ac45ac99cf6945d9ed24ced09845ff1 Mon Sep 17 00:00:00 2001 From: Tsz Yin Chan Date: Sun, 23 Oct 2022 17:49:45 +1100 Subject: [PATCH 5/6] Increase the font weight and font size for readability --- src/main/java/org/jabref/gui/entryeditor/EntryEditor.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css b/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css index 3cbe488051b..d81aa077f4e 100644 --- a/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css +++ b/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css @@ -123,6 +123,9 @@ #bibtexSourceCodeArea .search { -fx-fill: green; + -fx-font-size: 1.2em; + -fx-font-weight: bolder; + } #citationsPane { From 3682ad778052f21bdd5c797ed4249673668b9dea Mon Sep 17 00:00:00 2001 From: Tsz Yin Chan Date: Fri, 28 Oct 2022 14:26:30 +1100 Subject: [PATCH 6/6] -Adopted high-contrast colors (yellow and purple) -updated CHANGELOG.md --- CHANGELOG.md | 2 +- src/main/java/org/jabref/gui/entryeditor/EntryEditor.css | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c48f8ddc393..c1b22277ca5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,7 +45,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve - We fixed an issue where a message about changed metadata would occur on saving although nothing changed. [#9159](https://github.com/JabRef/jabref/issues/9159) - When adding or editing a subgroup it is placed w.r.t. to alphabetical ordering rather than at the end. [koppor#577](https://github.com/koppor/jabref/issues/577) - 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) -- We changed the color of found text from red to green. [koppor#552](https://github.com/koppor/jabref/issues/552) +- We changed the color of found text from red to high-contrast colors (background: yellow; font color: purple). [koppor#552](https://github.com/koppor/jabref/issues/552) - We modified the "Delete file" dialog and add the full file path to the dialog text. The file path in the title was changed to file name only. [koppor#534](https://github.com/koppor/jabref/issues/534) - Download from URL now automatically fills with URL from clipboard. [koppor#535](https://github.com/koppor/jabref/issues/535) diff --git a/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css b/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css index d81aa077f4e..4b2befd4dd3 100644 --- a/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css +++ b/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css @@ -122,7 +122,8 @@ } #bibtexSourceCodeArea .search { - -fx-fill: green; + -rtfx-background-color: #ffff00; + -fx-fill: #7800A9 ; -fx-font-size: 1.2em; -fx-font-weight: bolder;