skills/modal/SKILL.md
Use when you need to display focused content or actions.
npx skillsauth add thedaviddias/ux-patterns-for-developers modalInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Display focused content or actions
A modal appears on top of the main application screen, blocking page interaction until closed. Modals display important information, request user input, or confirm actions in a focused way.
Use modals to interrupt user flow for important information or required user input before proceeding. Common scenarios include:
references/pattern.md, then choose the smallest viable variation.The following table outlines the standard keyboard interactions for modal components. These interactions ensure that users can navigate and operate modals effectively using only a keyboard. | Key | Action | | ----------- | ---------------------------------------------------------------------------------------------------- | | Escape | Closes the modal | | Tab | Moves focus to the next focusable element within the modal. Focus should be trapped within the modal | | Shift + Tab | Moves focus to the previous focusable element within the modal | | Enter/Space | Activates the focused button or control |
Note: When the modal opens, focus should automatically move to the first focusable element within the modal (usually the close button or the first form field). When the modal closes, focus should return to the element that triggered the modal.
The Problem: Users feel trapped if they can't exit a modal.
How to Fix It?
Always provide a clear close button (X) and support the Esc key for dismissal.
The Problem: Unrequested modals on page load can feel like pop-ups that disrupt user flow.
How to Fix It? Only show modals when the user intentionally initiates them.
The Problem: Some modals allow interaction with background content while open, causing layered focus.
How to Fix It? Add a focus trap inside the modal and prevent background interaction until it's closed.
For full implementation detail, examples, and testing notes, see references/pattern.md.
Pattern page: https://uxpatterns.dev/patterns/content-management/modal
tools
Use when implementing multi-step forms and processes.
content-media
Use when implementing video playback with controls.
development
Use when choosing, comparing, or implementing UX patterns across the UX Patterns for Developers corpus.
tools
Use when implementing user profile and account management.