On 24 Oct 2013, at 03:50, Marcelo Paimon <[email protected]> wrote:

> Does anyone know how to remove the shadow pattern of input and textarea, I 
> tried several properties, and does not disable.

I had a play around with this, and it looks like they are linear-gradients. Try 
something like:

input {
  background: linear-gradient(to bottom,white,white);
}

or

textarea {
  background: linear-gradient(to bottom,transparent,transparent);
}

I put a test case at:

http://people.mozilla.org/~cmills/form-test/

_______________________________________________
dev-b2g mailing list
[email protected]
https://lists.mozilla.org/listinfo/dev-b2g

Reply via email to