plotly / plotly/dash

[BUG] Tooltip zindex incorrect on overlapping sliders

Open
#3,632 2 comments 0 reactions 1 assignee View on GitHub

@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
Image

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

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.