-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support IE9/10 media hack? #26
Comments
+1 |
Actually,
I will investigate to see if there's a way to prevent this behavior in sass. I don't see the point of supporting a malformed hack for IE here. |
+1 for this issue with sass compiling causing In the meantime, I found a workaround using a slightly different IE Media Query hack which @media screen\0 {
....
} Props to : http://keithclark.co.uk/articles/moving-ie-specific-css-into-media-blocks/media-tests/ for the media query hacks. |
Trying to use an IE9/10 specific
@media screen and (min-width:0\0)
hack (see "Moving IE specific hacks into media blocks") but StripMQ (what we use for IE8 support) is exiting with an error:Would it be possible to support this weird hack? As a result, we'll have to degrade IE9/10 so that StripMQ can still work, but ideally StripMQ would maybe just ignore media queries it doesn't understand?
I think I lifted this hack from http://wtfforms.com: https://github.com/mdo/wtf-forms/blob/master/wtf-forms.css#L186-L212
Thanks!
The text was updated successfully, but these errors were encountered: