Hi,
A selected checkbox in a checkbox column has a different color depending on the brower that you use. In Edge it is grey and in Chrome blue. I am trying to figure out how to change this but so far no luck in identifying which part of the css I need to change. Can anyone help please?
Regards,Alfio Esposito
Hi @Alfio Esposito,
You can use the CSS accent-color property to change the color of the native html checkbox.
For the case of the DataGrid, you can use something like:
.wj-cell-check {
accent-color: var(--color-primary)
}
Best regards,
Bernardo Cardoso
Thanks Bernardo.