When to use : Popover ?
A popover is a component that is placed above any other content on the page, to provide new or specific information. Popovers can appear one at a time and must contain an interactive element such as a button or link.
- When you need to provide guidance into an interface. In the case you need to use more than 3/4 popovers, prefer using a modal.
Do / Don't
|
DO |
DON'T |
Use popover when you need to provide extra information and actions about a UI element or new feature. |
Don’t use popover to provide a short text or a description. |
|
|
|
|
DO |
DON'T |
Use popover when you need to provide an interactive action. |
Don’t use popover without a call to action. Use tooltip instead |
|
|
|
|
DO |
DON'T |
The popover should be positioned next to the content to which it provides additional information. |
The popover covers the content to which it relates. |
|
|
|
|
DO |
DON’T |
To close popover, you must : click outisde, use xmark or a CTA. |
The popover should not be closable only with the xmark. |