-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Description
When you use ipywidgets to interact with a matplotlib plot, it shows these black scrollbars even when there is no need to scroll:
This is due to this line of CSS, which specifies overflow: scroll on that image element:
| const divStyle: Record<string, string | number> = { overflow: 'scroll', position: 'relative' }; // `overflow:scroll` is the default style used by Jupyter lab. |
This should be changed to overflow: auto. Not sure what that comment in the code about Jupyterlab means since these scrollbars do not appear in Jupyterlab.
Metadata
Metadata
Assignees
Labels
No labels