Reputation: 14100
When I have data inside of the input, the shadow will display in the input's background and I want to remove it in bootstrap 2.
I just want a white background in the input box only.
Please remember that I'm using bootstrap 2!
Thanks!
http://jsbin.com/vuzikonazu/edit?html,css,js,output
Upvotes: 0
Views: 43
Reputation: 560
Add box-shadow:none;
in input class as below
.text-input-wrapper input {
border:none;
background:none;
outline:none;
padding:0 0;
margin:0 0;
font:inherit;
box-shadow:none;
}
Upvotes: 1