Skip to content

Commit

Permalink
excluded bootstrap from popper
Browse files Browse the repository at this point in the history
  • Loading branch information
milospp committed Dec 10, 2024
1 parent 6d1aee5 commit a84b1c8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,23 @@ $(document).ready(function(){
querySelector: "#researchAreaIcon",
data: {
title: "<div>" + i18nStrings.researchAreaTooltipOne + "</div><div>" + i18nStrings.researchAreaTooltipTwo + "</div>",
html: true,
fallbackPlacements: ['bottom', 'left', 'top', 'right'],
placements: ['top', 'right', 'bottom', 'left'],
customClass: "vitroTooltip"
}
},
{
querySelector: "#fullViewIcon",
data: {
title: i18nStrings.quickviewTooltip,
html: true,
fallbackPlacements: ['bottom', 'left', 'top', 'right'],
placements: ['top', 'right', 'bottom', 'left'],
customClass: "vitroTooltip"
}
},
{
querySelector: "#quickViewIcon",
data: {
title: "<div>" + i18nStrings.standardviewTooltipOne + '</div><div>' + i18nStrings.standardviewTooltipTwo + "</div>",
html: true,
fallbackPlacements: ['bottom', 'left', 'top', 'right'],
placements: ['top', 'right', 'bottom', 'left'],
customClass: "vitroTooltip"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,36 +91,28 @@ function initGlobalToolTips() {
data: {
title: "<div class='visCommonControllTooltip'>" + $('#toolTipOne').html() + "</div>",
customClass: "vitroTooltip vitroTooltip-yellow",
html: true,
sanitize: false,
fallbackPlacements: ['right', 'bottom', 'top', 'left']
placements: ['left', 'top', 'bottom', 'right']
}
},{
querySelector: "#exploreInfoIcon",
data: {
title: "<div class='visCommonControllTooltip'>" + $('#exploreTooltipText').html() + "</div>",
customClass: "vitroTooltip vitroTooltip-yellow",
html: true,
sanitize: false,
fallbackPlacements: ['right', 'bottom', 'top', 'left']
placements: ['left', 'top', 'bottom', 'right']
}
},{
querySelector: "#compareInfoIcon",
data: {
title: "<div class='visCommonControllTooltip'>" + $('#compareTooltipText').html() + "</div>",
customClass: "vitroTooltip vitroTooltip-yellow",
html: true,
sanitize: false,
fallbackPlacements: ['right', 'bottom', 'top', 'left']
placements: ['left', 'top', 'bottom', 'right']
}
},{
querySelector: "#imageIconThree",
data: {
title: "<div class='visCommonControllTooltip'>" + $('#toolTipThree').html() + "</div>",
customClass: "vitroTooltip vitroTooltip-yellow",
html: true,
sanitize: false,
fallbackPlacements: ['left', 'bottom', 'top', 'right']
placements: ['left', 'top', 'bottom', 'right']
}
},
]
Expand Down
12 changes: 0 additions & 12 deletions webapp/src/main/webapp/themes/nemo/css/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit a84b1c8

Please sign in to comment.