My Chrome browser isn't showing the gradient effect, but it seems to work perfectly fine in Safari and Firefox. Here's the code snippet I'm using:
.accounts-form #auth-form {
background: -moz-linear-gradient(#FEFEFE, #F4F4F4) repeat scroll 0 0 #F4F4F4;
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
margin: 0;
padding: 0 0 40px;
}
The problem seems to be with that background:
line. While some users have reported issues with -webkit-gradient
, I am specifically facing problems with -moz-linear-gradient
.