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
{{ message }}
This repository was archived by the owner on Jan 6, 2025. It is now read-only.
As part of a responsive UI, there are times when we want to hide some elements of our UI (not whole parts, just a bunch of elements e.g. an item's label) on small screens.
As an example, I'd expect the following to work so that on non-xs screens, it displays the label inline next to the icon, and on xs screens only the icon remains:
The show/hide functionality now works as of v2.0.0-beta.4, but it looks like it toggles only between display: none and display: block, ignoring the actual display mode the element was in before fxHide got applied.
I think fxHide should take into account the element's actual display mode and not interfere with it.