You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tooltips created with rx.tooltip() do not open on mobile devices. Since mobile screens do not support hover, tooltips should at least be triggered on click/tap.
To Reproduce
Create a tooltip using rx.tooltip() as shown below:
rx.tooltip(
rx.button("Hover over me"),
content="This is the tooltip content.",
)
Open the application on a mobile device or in a browser's mobile simulation mode.
Tap the button that has a tooltip.
Notice that the tooltip does not appear.
Expected Behavior
On mobile devices, tooltips should open when tapping the trigger element (e.g., a button or an icon). Since hover is not possible on touchscreens, onclick should be supported as a fallback.
Specifics (please complete the following information):
**Python Version: 3.13.1
**Reflex Version:0.6.8
**OS:WSL2
**Browser (Optional):All
The text was updated successfully, but these errors were encountered:
Describe the Bug
Tooltips created with
rx.tooltip()
do not open on mobile devices. Since mobile screens do not supporthover
, tooltips should at least be triggered onclick/tap
.To Reproduce
rx.tooltip()
as shown below:Expected Behavior
On mobile devices, tooltips should open when tapping the trigger element (e.g., a button or an icon). Since
hover
is not possible on touchscreens,onclick
should be supported as a fallback.Specifics (please complete the following information):
The text was updated successfully, but these errors were encountered: