dragoon0x/everything-design-taste

tooltip-popover

Tooltip design, popover patterns, hover cards, contextual help, and accessible tooltips.

First seen Jul 18, 2026

Installation

$ npx skills add dragoon0x/everything-design-taste --skill tooltip-popover

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dragoon0x/everything-design-taste · top by installs.

npx skills add dragoon0x/everything-design-taste

Browse all from dragoon0x/everything-design-taste

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 11
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,499 B
  • docs SUMMARY.md 111 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Tooltip & Popover Patterns

Tooltips

  • Purpose: Brief label or description for an element
  • Trigger: Hover (desktop), long-press (mobile)
  • Content: 1-2 lines max, plain text only
  • Delay: Show after 300-500ms hover, hide immediately on mouse leave
  • Position: Above the element by default, flip if near viewport edge

When to Use

  • Explaining icon-only buttons
  • Showing full text of truncated content
  • Describing form fields with brief guidance

When NOT to Use

  • Critical information (users may never hover)
  • Rich content (links, images, forms)
  • Mobile-primary interfaces (hover doesn't exist)

Popovers

  • Purpose: Rich contextual content
  • Trigger: Click (not hover)
  • Content: Can include text, links, buttons, small forms
  • Dismiss: Click outside, Escape key, or explicit close button
  • Position: Near the trigger, within viewport

Hover Cards

  • Preview content without navigating (user profiles, link previews)
  • Show after 500ms hover delay
  • Keep visible while hovering over the card itself
  • Include a way to navigate to the full content

Accessibility

  • Tooltips: role="tooltip", aria-describedby on trigger
  • Popovers: role="dialog", focus trap, Escape to close
  • Both: visible to screen readers, keyboard accessible