Skip to content

Commit

Permalink
Fix for issue 1 and 6 (#11)
Browse files Browse the repository at this point in the history
Fix for issue #1 and #6
  • Loading branch information
LDeolindo authored Dec 8, 2022
1 parent a877678 commit 8244015
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/main/java/org/jabref/gui/Dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
-jr-yellow: #b5b021;
-jr-orange: #b77620;

-jr-contrast-red: #974450;
-jr-contrast-blue : #156E70;

-jr-base: #141824;

-jr-background-alt: #151924;
Expand Down Expand Up @@ -68,11 +71,11 @@
}

.addition {
-rtfx-background-color: -jr-green;
-rtfx-background-color: -jr-contrast-blue;
}

.deletion {
-rtfx-background-color: -jr-red;
-rtfx-background-color: -jr-contrast-red;
}

#previewBody {
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/org/jabref/logic/layout/LayoutEntry.java
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,8 @@ private String handleOptionField(BibEntry bibtex, BibDatabase database) {
fieldEntry = postFormatter.format(fieldEntry);
}

fieldEntry = fieldEntry.replaceAll("\"", "\"\"");

return fieldEntry;
}

Expand Down

0 comments on commit 8244015

Please sign in to comment.