From b6c9ea26116f63f12da7964c974203ce6d4d8f8a Mon Sep 17 00:00:00 2001 From: Piotr Gawron <piotr.gawron@uni.lu> Date: Tue, 5 Nov 2019 11:52:30 +0100 Subject: [PATCH] clear button icon, refresh comments button and show overview button icons were missing --- CHANGELOG | 2 ++ frontend-js/src/main/js/gui/topMenu/TopMenu.js | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 463eb98d64..28f3050037 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,8 @@ minerva (15.0.0~alpha.1) stable; urgency=medium sessions (#836) * Bug fix: structural states of proteins are imported properly from SBGNML PD (#995) + * Bug fix: clear button icon, refresh comments button and show overview + button icons were missing (regression 15.0.0~alpha.0) minerva (15.0.0~alpha.0) stable; urgency=medium * Improvement: logs provided for validation data model are structurized (#325) diff --git a/frontend-js/src/main/js/gui/topMenu/TopMenu.js b/frontend-js/src/main/js/gui/topMenu/TopMenu.js index 08ba1e70d3..e89bf0ee78 100644 --- a/frontend-js/src/main/js/gui/topMenu/TopMenu.js +++ b/frontend-js/src/main/js/gui/topMenu/TopMenu.js @@ -95,7 +95,7 @@ TopMenu.prototype._createGui = function () { var showOverviewButton = Functions.createElement({ type: "button", className: "minerva-overview-button", - content: "<i class='fa fa-sitemap' style='font-size:18px; font-weight:400; padding-right:10px;'></i><span >SHOW OVERVIEW</span>", + content: "<i class='fa fa-sitemap' style='font-size:18px; padding-right:10px;'></i><span >SHOW OVERVIEW</span>", style: "display:none", xss: false }); @@ -142,7 +142,7 @@ TopMenu.prototype._createGui = function () { var refreshCommentButton = Functions.createElement({ type: "button", className: "minerva-overview-button", - content: "<i class='fa fa-refresh' style='font-size:21px; font-weight:400;'></i>", + content: "<i class='fa fa-refresh'></i>", style: "display:none", xss: false }); @@ -153,7 +153,7 @@ TopMenu.prototype._createGui = function () { type: "button", name: "clearButton", className: "minerva-overview-button", - content: "<i class='fa fa-times' style='font-size:18px; font-weight:300; padding-right:10px;'></i>CLEAR", + content: "<i class='fa fa-times' style='padding-right:10px;'></i>CLEAR", xss: false }); rightHeaderMenuDiv.appendChild(clearButton); -- GitLab