Tooltips & Popovers
Tooltips and popovers for lightweight guidance, context, and inline help
This page standardizes hover and click-triggered overlays across Lumora. Use it to document placement, trigger behavior, dismiss patterns, and content density for concise hints and richer popover panels.
1. Variant Matrix
Core overlay styles for hinting and richer inline guidance
2. Interaction Playground
Generate a tooltip or popover recipe from controls
3. Placement and Triggering
Overlay direction and event patterns for real layouts
4. State Modeling
Disabled controls, dismiss behavior, and richer content density
5. Composition Patterns
Use in forms, data tables, and compact action surfaces
6. Real-use Snippets
Copy-ready tooltip and popover patterns for production usage
<button class="btn btn-outline btn-sm" data-bs-toggle="tooltip" data-bs-placement="top" title="Short guidance text" > Hover Me </button>
<button class="btn btn-soft btn-sm" data-bs-toggle="popover" data-bs-placement="right" data-bs-title="Action details" data-bs-content="Richer context for the selected action." > Open Popover </button>
<span class="d-inline-block" tabindex="0" data-bs-toggle="tooltip" data-bs-title="Disabled actions need a wrapper."> <button class="btn btn-outline-secondary" type="button" disabled>Disabled</button> </span>