Added back the -webkit prefix for radial-gradient used on body

This commit is contained in:
Julian Descottes 2013-06-16 08:20:48 +02:00
parent 10737007d8
commit e3beb6bd09

View File

@ -2,6 +2,10 @@
body {
background: radial-gradient(circle, #000, #373737);
/* 16/06/2013 : -webkit still needed for
safari, safari mobile and android browser and chrome for android
cf http://caniuse.com/css-gradients */
background: -webkit-radial-gradient(circle, #000, #373737);
}
/**