[BUG] Tooltip zindex incorrect on overlapping sliders
Open
@KoolADE85 is already working on this.
Since Mar 4, 2026.
- Dominant language
- Python
- Stars
- 24.4k
- Forks
- 2.3k
- Avg merge
- 2d 7h
- Merged PRs (30d)
- 13
Description
Thanks for helping with the previous bug I had, no I have another small visual bug with the sliders and their tooltips
Context
dash 4.0.0
- OS: macOS
- Browser Chrome
- Version 145.0.7632.45
Describe the bug
The tooltip is placed under the next slider
Expected behavior
The tooltip should be placed on top of the next slider
Reproducing code
from dash import Dash, dcc, html
app = Dash(__name__)
app.layout = html.Div(
children=[
dcc.Slider(0, 100, 1, value=10, id="my-slider", tooltip={"placement": "bottom", "always_visible": True}),
dcc.Slider(0, 20, 5, value=10, id="my-slider2", tooltip={"placement": "bottom", "always_visible": True}),
]
)
if __name__ == "__main__":
app.run(debug=True)
Thanks again for the amazing work ❤️
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.