Skip to content

Changed the color of light-color-text and highlighted text in … #9546

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve
- We fixed the display of the "Customize Entry Types" dialog title. [#9198](https://github.com/JabRef/jabref/issues/9198)
- We fixed an issue where the CSS styles are missing in some dialogs. [#9150](https://github.com/JabRef/jabref/pull/9150)
- We fixed an issue where controls in the preferences dialog could outgrow the window. [#9017](https://github.com/JabRef/jabref/issues/9017)
- We fixed an issue where highlighted text color for entry merge dialogue was not clearly visible. [#9192](https://github.com/JabRef/jabref/issues/9192)

### Removed

Expand Down
8 changes: 5 additions & 3 deletions src/main/java/org/jabref/gui/Dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

-fx-dark-text-color: black;
-fx-mid-text-color: #7d8591;
-fx-light-text-color: #9aa3af;
-fx-light-text-color: #e5e7ea;
-jr-separator: #333744;
-fx-outer-border: #424758;

Expand Down Expand Up @@ -68,11 +68,13 @@
}

.addition {
-rtfx-background-color: -jr-green;
-fx-text-background-color: black;
-rtfx-background-color: #FDAF56;
}

.deletion {
-rtfx-background-color: -jr-red;
-fx-text-background-color: black;
-rtfx-background-color: #FFEECC;
}

#previewBody {
Expand Down