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 has been archived by the owner on Oct 14, 2021. It is now read-only.
Can easily get into a situation where you might show the "transition" repo from two different platforms.
E.g. we should show transitions-android and transitions-objc.
Implementing this change will require some modification to the data in different contexts... One way to do this:
When viewing the "starred" tab give a class to the container view, e.g. starred.
Add both representations of the data to each filterable node. By default the expanded data will be hidden. .expanded { display: none; }
Add a css query to show the expanded state and hide the non-expanded state. .starred .expanded { display: default; } .starred .collapsed { display: none; }
The text was updated successfully, but these errors were encountered:
Can easily get into a situation where you might show the "transition" repo from two different platforms.
E.g. we should show
transitions-android
andtransitions-objc
.Implementing this change will require some modification to the data in different contexts... One way to do this:
starred
..expanded { display: none; }
.starred .expanded { display: default; } .starred .collapsed { display: none; }
The text was updated successfully, but these errors were encountered: