Merge pull request #214 from AurelioDeRosa/master

Removed all the occurrences of -ms-linear-gradient() (issue #200)
This commit is contained in:
Eric Ferraiuolo 2013-10-14 09:16:29 -07:00
commit 60f8827600
2 changed files with 7 additions and 1 deletions

View File

@ -9,6 +9,13 @@ NEXT
* The `body` selector in the `base-context` module is now replaced with `.pure`,
like the `html` selector.
### Buttons
* Removed all the occurrences of `-ms-linear-gradient()` from Buttons since it has
never been in the final version of IE 10. ([#200][]: @AurelioDeRosa)
[#200]: https://github.com/yui/pure/issues/200
0.3.0 (2013-09-09)
------------------

View File

@ -28,7 +28,6 @@
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(40%, rgba(0,0,0, 0.05)), to(rgba(0,0,0, 0.10)));
background-image: -webkit-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
background-image: -moz-linear-gradient(top, rgba(0,0,0, 0.05) 0%, rgba(0,0,0, 0.10));
background-image: -ms-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
background-image: -o-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
background-image: linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
}