mmmm
mmmm

Reputation: 3938

Color of the text in input [ MobileApp, KendoUI ]

In my android app I have css like that:

input[type=text]{ 
    border:1px solid #c7c7c7;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    color: black;
    width:100%; 
    padding: 10px;
}

and everything works except of the font-color in the input - it's white and I can't see what I'm writing. How can I change that?

Upvotes: 0

Views: 206

Answers (1)

hsy_89
hsy_89

Reputation: 63

Try this:

input[type="text"]{ 
border:1px solid #c7c7c7;
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
box-sizing:border-box;
color: black !important;
width:100%; 
padding: 10px;

}

Upvotes: 1

Related Questions