When I plug in an external mouse, scrollable widgets suddenly show scrollbars when they did not do so otherwise. Now, something has changed and these scrollbars show up even when no external pointer device is plugged in.
I can make the scrollbars go away if I use css overflow: hidden; but then I lose the scrollable content of the widget.
Both of the other css-based methods to hide scrollbars have no effect:
#widget-id::--webkit-scrollbar { display: none; }
and
scrollbar-width: none;
Any suggestion as to what's happening and how I can fix it?
When I plug in an external mouse, scrollable widgets suddenly show scrollbars when they did not do so otherwise. Now, something has changed and these scrollbars show up even when no external pointer device is plugged in.
I can make the scrollbars go away if I use css
overflow: hidden;
but then I lose the scrollable content of the widget.Both of the other css-based methods to hide scrollbars have no effect:
#widget-id::--webkit-scrollbar { display: none; }
andscrollbar-width: none;
Any suggestion as to what's happening and how I can fix it?
Thanks!