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 Sep 16, 2019. It is now read-only.
Been using FoundationPress for a while, no issues at all. However I tested the Offcanvas menu in Safari today (both 5.1 via Windows & 10.9 in OSX), and the menu wasn't popping out, the opacity was changing but no transformation.
Get's it working again. This seems to have occurred with a lot of the transition properties in similar classes, (transition etc.) I checked the latest build of Foundation and it has the latter -webkit- prefix, (http://foundation.zurb.com/) I believe that it might just be me, I'm wondering about the prefix assignment which happens in the Sass task? I've been looking here and I'm unable to find any resolution, or why the npm module might not be working? All other Sass, watch and package tasks work fine.
The text was updated successfully, but these errors were encountered:
Hi,
Been using FoundationPress for a while, no issues at all. However I tested the Offcanvas menu in Safari today (both 5.1 via Windows & 10.9 in OSX), and the menu wasn't popping out, the opacity was changing but no transformation.
I tested this on a fresh build (2.61).
I noticed something though, the class:
.is-open-left { -ms-transform: translateX(250px); transform: translateX(250px); }
It's missing the transform property with the -webkit- therefore changing to:
.is-open-left { -ms-transform: translateX(250px); -webkit-transform: translateX(250px); transform: translateX(250px); }
Get's it working again. This seems to have occurred with a lot of the transition properties in similar classes, (transition etc.) I checked the latest build of Foundation and it has the latter -webkit- prefix, (http://foundation.zurb.com/) I believe that it might just be me, I'm wondering about the prefix assignment which happens in the Sass task? I've been looking here and I'm unable to find any resolution, or why the npm module might not be working? All other Sass, watch and package tasks work fine.
The text was updated successfully, but these errors were encountered: