Skip to content

Commit

Permalink
Make masthead tooltips noninteractive
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Jun 1, 2024
1 parent 136e8a6 commit f170db9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/components/Masthead/MastheadDropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ defineProps({
</script>

<template>
<BNavItemDropdown :id="id" ref="dropdown" v-b-tooltip.hover.bottom :title="tooltip" right>
<BNavItemDropdown :id="id" ref="dropdown" v-b-tooltip.noninteractive.hover.bottom :title="tooltip" right>
<template v-if="icon" v-slot:button-content>
<span class="sr-only">{{ tooltip || id }}</span>
<span class="fa fa-fw" :class="icon" />
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Masthead/MastheadItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ defineProps({
<template>
<BNavItem
:id="id"
v-b-tooltip.hover.bottom
v-b-tooltip.noninteractive.hover.bottom
:href="withPrefix(url)"
:target="target || '_parent'"
:link-classes="{ 'nav-icon': !!icon, toggle: toggle }"
Expand Down

0 comments on commit f170db9

Please sign in to comment.