diff --git a/CHANGELOG.md b/CHANGELOG.md index 66e4e2f17e1..e18d228a6d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -91,7 +91,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve - We fixed an issue where an exception was thrown when adding a save action without a selected formatter in the library properties [#6069](https://github.com/JabRef/jabref/issues/6069) - We fixed an issue where JabRef's icon was missing in the Export to clipboard Dialog. [#6286](https://github.com/JabRef/jabref/issues/6286) - We fixed an issue when an "Abstract field" was duplicating text, when importing from RIS file (Neurons) [#6065](https://github.com/JabRef/jabref/issues/6065) - +- We fixed an issue where the blue and red text colors in the Merge entries dialog were not quite visible [#6334](https://github.com/JabRef/jabref/issues/6334) ### Removed diff --git a/src/main/java/org/jabref/gui/mergeentries/MergeEntries.css b/src/main/java/org/jabref/gui/mergeentries/MergeEntries.css index 4481810193c..82f5ca6d3ee 100644 --- a/src/main/java/org/jabref/gui/mergeentries/MergeEntries.css +++ b/src/main/java/org/jabref/gui/mergeentries/MergeEntries.css @@ -3,10 +3,10 @@ } .text-added { - -fx-fill: blue; + -fx-fill: #54A3F2; } .text-removed { - -fx-fill: red; + -fx-fill: #FA5B68; }