I am trying to disable top inner shadow in input=text field which is applied by default by iPhone. Any ideas how to do this? tried to overwrite -webkit-box-shadow with no success.

cheers
|
I am trying to disable top inner shadow in input=text field which is applied by default by iPhone. Any ideas how to do this? tried to overwrite -webkit-box-shadow with no success.
cheers
| |||||
feedback
|
|
Have you tried using I can't try this out at this moment. | |||||||
|
feedback
|
|
I found that Jamin's answer was better for now. If I use the | |||
feedback
|
|
I have had this same issue, wanting to display input text fields that are styled: WITHOUT shadows. My solution (works perfectly on iPad/ iPhone) make background gif that is completely transparent. Apply that style to your input field. My code was: .textBox input { border:none; background:url(../images/bg_inputFix.gif); } -Jamin | |||
|
feedback
|
|
You can add a background image gradient to remove the inner shadow; background-image:-webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(255,255,255)), to(rgb(255,255,255))); | |||
|
feedback
|
|
I did the background gradient and it doesnt work, I also found a variation of it:
and that hasn't worked either :( | |||
|
feedback
|