stylus / nib

Stylus mixins, utilities, components, and gradient image generation
http://stylus.github.io/nib
MIT License
1.9k stars 250 forks source link

IE 10 FlexBox Implementation Incorrect #174

Closed damassi closed 11 years ago

damassi commented 11 years ago

I noticed today that nib is outputting

display: -ms-box;

when the "correct" IE10 implementation is

display: -ms-flexbox;

Also,

-ms-box-flex: 1;

should be

-ms-flex: 1;

Please see: http://zomigi.com/blog/flexbox-syntax-for-ie-10/ and http://msdn.microsoft.com/en-us/library/ie/hh673531(v=vs.85).aspx for more information

TechnotronicOz commented 11 years ago

I just noticed that yesterday as well. I updated it on my local project. Worth doing a pull request?

wprater commented 11 years ago

Please submit a PR if this is working for your guys! Im doing a large project with Flexbox now!

juriejan commented 11 years ago

I'm submitting a pull request that should fix almost everything 'flexbox' for IE10. Please let me know if anyone finds anything that I might have missed so that I can include it. (or fork and pull request on my repo perhaps?)

notslang commented 11 years ago

the PR was merged, so I think this issue can be closed... reopen if it's not