Reputation: 5628
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
Reputation: 1
Try this:
.customField .x-input-el::-webkit-input-placeholder {
color: #2e4bc5;
}
Upvotes: 0