Nick Div
Nick Div

Reputation: 5628

Is there a way to give CSS to all Placeholders in sencha touch application

I am struggling to find a way to give CSS to all placeholders in my application,

I have tried the following:

.customField input::-webkit-input-placeholder {
    color: #2e4bc5;
}

.x-text-field input::webkit-input-placeholder{
color :#2e4bc5
}

Any help would be appreciated.

Upvotes: 1

Views: 268

Answers (1)

Rafael
Rafael

Reputation: 1

Try this:

.customField .x-input-el::-webkit-input-placeholder {
    color: #2e4bc5;
}

Upvotes: 0

Related Questions