Filter Table Text Field Background Colour Change


Hello,
I am trying to change the background colour of the filter text field within a table. Currently, I am only able to change the colour of the area outside the filter text field.

2 ways I think you could do this

-In the same place you changed border-color: red; add new value background-color:#f0f044;

-In your stylesheet.css you can change the background color of that textbox with something like:

.filterCommon .ia_inputField {
    background-color: #55f0f0; /* Change to your desired color */
}

image

Hi ,
I have Highlighted using the Pen Tool for Pointing out the Place where Colour need to change
I have applied the CSS to the Filter Style class , Background colour is changed around the 'Filter table...' Text Filed

If can´t find the property of that background you should do it this way:

-Edit your stylesheet.css you and add the background-color property:

.filterCommon .ia_inputField {
    background-color: #55f0f0; /* Change to your desired color */
}

image

image

Thank You @Alejandro_Alaco