From 5c2e5b1a7f8a76c86b86ee7fb0abd519200c5f83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20M=C3=A9ndez?= Date: Sun, 19 May 2019 21:22:14 +0200 Subject: [PATCH 1/2] Resize different fonts changing entry type (#4980) * Resize different fonts changing entry type * Update CHANGELOG * Update for using relative sizes --- CHANGELOG.md | 1 + .../java/org/jabref/gui/entryeditor/EntryEditor.css | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73b7b325491..5b2f1b66664 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -117,6 +117,7 @@ We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `# - We fixed an issue where an NullPointer exception was thrown when a referenced entry in an Open/Libre Office document was no longer present in the library. Now an error message with the reference marker of the missing entry is shown. [#4932](https://github.com/JabRef/jabref/issues/4932) - We fixed an issue where a database exception related to a missing timezone was too big. [#4827](https://github.com/JabRef/jabref/issues/4827) - We fixed an issue where the command line help text had several errors, and arguments and descriptions have been rewritten to simplify and detail them better. [#4932](https://github.com/JabRef/jabref/issues/2016) +- We fixed an issue where the same menu for changing entry type had two different sizes and weights. [#4977](https://github.com/JabRef/jabref/issues/4977) ### Removed diff --git a/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css b/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css index 313583ed222..1a1be9d2870 100644 --- a/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css +++ b/src/main/java/org/jabref/gui/entryeditor/EntryEditor.css @@ -31,6 +31,16 @@ -fx-background-color: -jr-icon-background-active; } +#typeLabel .context-menu { + -fx-font-size: 0.92em; + -fx-font-weight: normal; +} + +#typeLabel .tooltip { + -fx-font-size: 1em; + -fx-font-weight: normal; +} + .icon-button.narrow { -fx-padding: 0.1em; } From 21b13f3f20fb8fb8006e068aa2e637e19ff1cc85 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Mon, 20 May 2019 08:23:20 +0200 Subject: [PATCH 2/2] Bump tika-core from 1.20 to 1.21 (#4984) Bumps [tika-core](https://github.com/apache/tika) from 1.20 to 1.21. - [Release notes](https://github.com/apache/tika/releases) - [Changelog](https://github.com/apache/tika/blob/master/CHANGES.txt) - [Commits](https://github.com/apache/tika/compare/1.20...1.21) Signed-off-by: dependabot[bot] --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index fed3e3894da..43c087f3fb2 100644 --- a/build.gradle +++ b/build.gradle @@ -94,7 +94,7 @@ dependencies { compile 'org.apache.pdfbox:fontbox:2.0.15' compile 'org.apache.pdfbox:xmpbox:2.0.15' - compile group: 'org.apache.tika', name: 'tika-core', version: '1.20' + compile group: 'org.apache.tika', name: 'tika-core', version: '1.21' // required for reading write-protected PDFs - see https://github.com/JabRef/jabref/pull/942#issuecomment-209252635 compile 'org.bouncycastle:bcprov-jdk15on:1.61'