I am trying to give a gradient to ion-content, though it is working in browser and emulator, it is not working on android device. If I replace it with plain color it works. Any ideas why this is so?
/* IE10 Consumer Preview /
background: -ms-radial-gradient(center, circle farthest-corner, #EBEBEB 0%, #E0CECE 100%);
/ Mozilla Firefox /
background: -moz-radial-gradient(center, circle farthest-corner, #EBEBEB 0%, #E0CECE 100%);
/ Opera /
background: -o-radial-gradient(center, circle farthest-corner, #EBEBEB 0%, #E0CECE 100%);
/ Webkit (Safari/Chrome 10) /
background: -webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, #EBEBEB), color-stop(1, #E0CECE));
/ Webkit (Chrome 11+) /
background: -webkit-radial-gradient(center, circle farthest-corner, #EBEBEB 0%, #E0CECE 100%);
/ W3C Markup, IE10 Release Preview */
background: radial-gradient(circle farthest-corner at center, #EBEBEB 0%, #E0CECE 100%);