Skip to content

Commit

Permalink
Closes #7936
Browse files Browse the repository at this point in the history
- Remove `c-menu` from Tooltip.
- Tooltip component tweaks.
  • Loading branch information
charlesh88 committed Dec 18, 2024
1 parent 638b03c commit 8c72e4a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/api/tooltips/components/TooltipComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ at runtime from the About dialog for additional information.
<template>
<div
ref="tooltip-wrapper"
class="c-menu c-tooltip-wrapper"
class="c-tooltip-wrapper"
:class="cssClasses"
:style="toolTipLocationStyle"
role="tooltip"
Expand Down
5 changes: 4 additions & 1 deletion src/api/tooltips/components/tooltip-component.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
.c-tooltip-wrapper {
@include menuOuter();
max-width: 200px;
height: auto;
width: auto;
padding: $interiorMargin;
padding: $interiorMargin $interiorMarginLg;
overflow-wrap: break-word;
pointer-events: none;
position: absolute;
z-index: 100;
}

.c-tooltip {
Expand Down

0 comments on commit 8c72e4a

Please sign in to comment.