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.

alt text

cheers

link|improve this question

really no ideas ??... – Marcin May 15 '10 at 10:18
Thanks for posting, also had the same issue. – Jeaffrey Gilbert Jan 3 at 7:44
feedback

5 Answers

up vote 16 down vote accepted

Have you tried using -webkit-appearance: none then applying a custom border like border: 1px solid black;

I can't try this out at this moment.

link|improve this answer
thank you, works great. – Marcin May 16 '10 at 10:47
This didn't work for me to completely hide the input box – JoshG Nov 24 '11 at 17:07
Perfect! Thanks. – Jeaffrey Gilbert Jan 3 at 7:45
feedback

I found that Jamin's answer was better for now. If I use the -webkit-appearance: none method instead, on the iPad it no longer applies my focus (pseudo-class) styles when a textarea/input is selected. It kind of ruins my form styling because textareas/inputs not in focus are significantly subdued.

link|improve this answer
And the reason I didn't comment on Jamin's post or vote it up is because I don't have any "reputation" yet! :\ – David Quinn Carder Jul 23 '10 at 1:42
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

link|improve this answer
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)));

link|improve this answer
Great idea! Worked for me! – Andy Aug 15 '11 at 21:55
feedback

I did the background gradient and it doesnt work, I also found a variation of it:

input[type='text']{
-webkit-border-radius: 0;
background-image:-webkit-gradient(linear, 0% 0%, 0% 100%, from(hsla(0,0%,100%,0)), to(hsla(0,0%,100%,0)));
background-image:-webkit-linear-gradient(hsla(0,0%,100%,0), hsla(0,0%,100%,0));
}

and that hasn't worked either :(

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.