1
mirror of https://github.com/pure-css/pure synced 2024-11-22 05:32:20 +01:00

Removed all the occurrences of -ms-linear-gradient() (issue #200)

This commit is contained in:
Aurelio De Rosa 2013-10-09 00:12:47 +02:00
parent ea37411518
commit f666eb74fa
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));
}