Open
Description
We need clarity on when to use tooltips versus when to use static help texts to describe features.
We certainly need at least one of them for many things that aren't immediately obvious (see i.e. #21306).
PRO tooltips
- only shown when actually necessary
- they don't shift user focus from the most important UI components to the mostly irrelevant help text
whenever you navigate on the page - easy to implement (
class="tooltip" data-content="Tooltip content"
)
CONTRA tooltips
- Requires JS to work
PRO static help text
- does not require JS
- -> no unexpected errors
CONTRA static help text
- (for me) unclear, what you need to do to add one
(do you only needclass="help"
, or do other fomantic UI classes need to be present as well?
In parent elements?) - Always grabs user focus, even on pages/screens where you have to be selective on what to present
- Slightly larger HTML response size