Filter Query Text Colour

Hi All, I Have a simple table that allows filtering. I would like to change the colour of the default filter query text, is this possible?

Hi @tomM

I was able to change the filter text color by adding this to the css in the assets folder:

.dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner input:not([type=radio]):not([type=checkbox]){
    color: red!important;
}

1 Like