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
Since this last update, tooltips have a default vertical scroll displayed.
Is it possible to add overflow-y: hidden or explain how to apply a specific CSS rule to the Shadow DOM from the media-controller ?
Thanks !
The text was updated successfully, but these errors were encountered:
In #994 `overflow-x: hidden` was added to the tooltips to prevent
unwanted overflows. `hidden` on a single axis does however introduce
scrollbars on Windows devices and Mac's who enabled scrollbars to show
always (this is great to emulate how a big part of users see your
website, which is why I have it enabled).
Changing the overflow to `overflow-x: clip` will achieve the same
result, but won't show a scrollbar. Which is what I added in this PR.
See video below showcasing the issue and fix. Let me know your thoughts.
cc @luwesFixes#1000https://github.com/user-attachments/assets/67509a11-099f-4b02-ba35-1e0acc46d003
Hello,
Since this last update, tooltips have a default vertical scroll displayed.
Is it possible to add
overflow-y: hidden
or explain how to apply a specific CSS rule to the Shadow DOM from the media-controller ?Thanks !
The text was updated successfully, but these errors were encountered: