Skip to content

Commit

Permalink
Tooltip Pattern: Clarify mouseout dismissal behavior (pull #3140)
Browse files Browse the repository at this point in the history
Resolve issue #3109 by clearly stating that the tooltip should remain open as long as the pointer is over the tooltip.
  • Loading branch information
adampage authored Oct 15, 2024
1 parent 0fcefb6 commit a6f3fbe
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions content/patterns/tooltip/tooltip-pattern.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,8 @@ <h2>Keyboard Interaction</h2>
<h3>Note</h3>
<ol>
<li>Focus stays on the triggering element while the tooltip is displayed.</li>
<li>
If the tooltip is invoked when the trigger element receives focus, then it is dismissed when it no longer has focus (onBlur).
If the tooltip is invoked with mouseIn, then it is dismissed with on mouseOut.
</li>
<li>If the tooltip is invoked when the trigger element receives focus, then it is dismissed when it no longer has focus (onBlur).</li>
<li>If the tooltip is invoked when a pointing cursor moves over the trigger element, then it remains open as long as the cursor is over the trigger or the tooltip.</li>
</ol>
</div>
</section>
Expand Down

0 comments on commit a6f3fbe

Please sign in to comment.