if-ie.styl icon indicating copy to clipboard operation
if-ie.styl copied to clipboard

Dividing the styles from IE and for IE using Stylus

Results 11 if-ie.styl issues
Sort by recently updated
recently updated
newest added

It would be a nice side-effect to be able to pass an array of colors to the `rgba-ie` and have it return the same array, but with fixed colors.

Subj: like I did with utilus.

enhancement

The point is to generate an `.ie.css` file automatically, so if there is a such possibility, we should add this.

@lusever mentioned that while `zoom` property could be used in normal browsers there should be a way to use it there. And as in IE you'll always use the `1`...

enhancement

Do we need to fiddle with `transparent` keyword? Do we need things like `rgba(0,0,0,0)` become `transparent` in ie? We can't replace `transparent` always with `rgba(0,0,0,0)`, 'cause of gradients, transitions etc.

enhancement
question

We could do something [like this](http://alwaystwisted.com/post.php?s=2012-08-06-a-sass-mixin-for-media-queries-and-ie), or anything similar, so we could use media-queries without the need to double the styles for IE etc.

enhancement

Since old IE don't support gradients, we could automatically create a fallback mixing the color stops of the gradients together. However, the question is: should we do that only to...

enhancement

Since IE don't support multiple backgrounds, we could create fallbacks for such places, like throwing away all the images except the top one (maybe there could be a flag to...

enhancement

We could use more conditional comments to differentiate the code for different versions of ie. What we could do with that? Do we need to support ie9 this way? What...

enhancement
question

with stylus it could be easy to add different ie expressions for different things in ie. I could try and move some things from my [IExpr](https://github.com/kizu/IExpr) to if-ie.styl. The obvious...

enhancement
question