diff --git a/HISTORY.md b/HISTORY.md index 24b6e2a..b54934e 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -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) ------------------ diff --git a/src/buttons/css/buttons.css b/src/buttons/css/buttons.css index 43cf819..47f5c71 100644 --- a/src/buttons/css/buttons.css +++ b/src/buttons/css/buttons.css @@ -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)); }