use outer color of radial gradient as solid fallback

This commit is contained in:
Hakim El Hattab
2012-10-20 21:43:42 -04:00
parent 8576264574
commit 143fc85c65
6 changed files with 9 additions and 9 deletions

View File

@ -19,7 +19,7 @@
}
@mixin radial-gradient( $outer, $inner, $type: circle ) {
background: $inner;
background: $outer;
background: -moz-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) );
background: -webkit-radial-gradient( center, $type cover, $inner 0%, $outer 100% );