madebysource / lesshat

Smart LESS CSS mixins library.
lesshat.com
MIT License
2.19k stars 258 forks source link

Fix for IE 10 align self and webkit justify-content #101

Closed yoohahn closed 10 years ago

yoohahn commented 10 years ago

IE10 is uses ms-flex-item-align and justify-content for ms and webkit was mixed

madve2 commented 10 years ago

I'm glad I'm not the only one who had problems with justify-content, thanks for the fix!

One issue remained, though: for -webkit-box-pack, center | end | justify | start should be used (as detailed here: http://css-infos.net/property/-webkit-box-pack), but your version – just like the one in the main branch – produces flex-start/flex-end. Could you please fix that too?

EDIT: I hacked together a fix in my app by changing { -webkit-box-pack: @process; } to { -webkit-box-pack: @process_moz; } in lesshat.less.