From 240457868661c5513e96d17c8650c8de37806fbe Mon Sep 17 00:00:00 2001 From: u7232539 <110802700+u7232539@users.noreply.github.com> Date: Sat, 29 Oct 2022 03:29:38 +1100 Subject: [PATCH] Changed the color of found text from red to high contrast (#9315) * Increases the font weight and font size of found text for readability * Adopted high-contrast colors (yellow and purple) * Updated CHANGELOG.md Co-authored-by: Christoph Co-authored-by: ThiloteE --- CHANGELOG.md | 1 + src/main/java/org/jabref/gui/entryeditor/EntryEditor.css | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab7b83bcc57..c1b22277ca5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,6 +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 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 e53c688a081..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,11 @@ } #bibtexSourceCodeArea .search { - -fx-fill: red; + -rtfx-background-color: #ffff00; + -fx-fill: #7800A9 ; + -fx-font-size: 1.2em; + -fx-font-weight: bolder; + } #citationsPane {