@include linear-gradient(color-stops(#e2e2e2, #fff 600px), top);
will generate something like
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, #e2e2e2), color-stop(100%, #ffffff));
^ this is not 600px
Also I learnt from this post that in webkit I should be using something like 600 instead of 600px.
Does Compass not do that?
Also I need to add background-repeat: no-repeat else the gradient will repeat in webkit?