I'm editing some input
, select
and textarea
, removing the "default" style, but I'm having a problem. When it is like disabled
, it should appear with a dark background. But it appears in white, even locked state. Does anyone know what I can change?
CSS:
input, select {
border: 1px solid #848484;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
outline:0;
height:100px;
width: 350px;
padding-left:10px;
padding-right:10px;
}