diff --git a/webapp/src/main/webapp/js/individual/individualTooltipBubble.js b/webapp/src/main/webapp/js/individual/individualTooltipBubble.js
index 1cfce2265..5adfe0e93 100644
--- a/webapp/src/main/webapp/js/individual/individualTooltipBubble.js
+++ b/webapp/src/main/webapp/js/individual/individualTooltipBubble.js
@@ -11,8 +11,7 @@ $(document).ready(function(){
querySelector: "#researchAreaIcon",
data: {
title: "
" + i18nStrings.researchAreaTooltipOne + "
" + i18nStrings.researchAreaTooltipTwo + "
",
- html: true,
- fallbackPlacements: ['bottom', 'left', 'top', 'right'],
+ placements: ['top', 'right', 'bottom', 'left'],
customClass: "vitroTooltip"
}
},
@@ -20,8 +19,7 @@ $(document).ready(function(){
querySelector: "#fullViewIcon",
data: {
title: i18nStrings.quickviewTooltip,
- html: true,
- fallbackPlacements: ['bottom', 'left', 'top', 'right'],
+ placements: ['top', 'right', 'bottom', 'left'],
customClass: "vitroTooltip"
}
},
@@ -29,8 +27,7 @@ $(document).ready(function(){
querySelector: "#quickViewIcon",
data: {
title: "" + i18nStrings.standardviewTooltipOne + '
' + i18nStrings.standardviewTooltipTwo + "
",
- html: true,
- fallbackPlacements: ['bottom', 'left', 'top', 'right'],
+ placements: ['top', 'right', 'bottom', 'left'],
customClass: "vitroTooltip"
}
},
diff --git a/webapp/src/main/webapp/js/visualization/mapofscience/VisCommonControl.js b/webapp/src/main/webapp/js/visualization/mapofscience/VisCommonControl.js
index 852e2fed0..3af81c930 100644
--- a/webapp/src/main/webapp/js/visualization/mapofscience/VisCommonControl.js
+++ b/webapp/src/main/webapp/js/visualization/mapofscience/VisCommonControl.js
@@ -91,36 +91,28 @@ function initGlobalToolTips() {
data: {
title: "" + $('#toolTipOne').html() + "
",
customClass: "vitroTooltip vitroTooltip-yellow",
- html: true,
- sanitize: false,
- fallbackPlacements: ['right', 'bottom', 'top', 'left']
+ placements: ['left', 'top', 'bottom', 'right']
}
},{
querySelector: "#exploreInfoIcon",
data: {
title: "" + $('#exploreTooltipText').html() + "
",
customClass: "vitroTooltip vitroTooltip-yellow",
- html: true,
- sanitize: false,
- fallbackPlacements: ['right', 'bottom', 'top', 'left']
+ placements: ['left', 'top', 'bottom', 'right']
}
},{
querySelector: "#compareInfoIcon",
data: {
title: "" + $('#compareTooltipText').html() + "
",
customClass: "vitroTooltip vitroTooltip-yellow",
- html: true,
- sanitize: false,
- fallbackPlacements: ['right', 'bottom', 'top', 'left']
+ placements: ['left', 'top', 'bottom', 'right']
}
},{
querySelector: "#imageIconThree",
data: {
title: "" + $('#toolTipThree').html() + "
",
customClass: "vitroTooltip vitroTooltip-yellow",
- html: true,
- sanitize: false,
- fallbackPlacements: ['left', 'bottom', 'top', 'right']
+ placements: ['left', 'top', 'bottom', 'right']
}
},
]
diff --git a/webapp/src/main/webapp/themes/nemo/css/theme.css b/webapp/src/main/webapp/themes/nemo/css/theme.css
index 1f5da1f97..f839279f1 100644
--- a/webapp/src/main/webapp/themes/nemo/css/theme.css
+++ b/webapp/src/main/webapp/themes/nemo/css/theme.css
@@ -268,15 +268,3 @@ These are helper classes to add margin gaps where needed
.input-group-header-search {
}
-
-#filter-groups .tab-content .tab-pane.active:not(.show) {
- opacity: 0;
-}
-
-#filter-groups .tab-content .tab-pane.show:not(.active) {
- opacity: 0;
-}
-
-.fade.in:not(.active) {
- display: none;
-}