How can I style just some column headers? I'd like to use color on column headings to group them into categories. I was directed to a CSS posting about this, but I cannot find unique IDs that will allow me to change just some column headings. Would be better if I could apply a class to multiple column headings to make this easier to manage.
Hi @tzhuff Thanks for reaching out! I'm moving this to feature requests since it isn't natively supported yet
As far as custom css, the css requires using class names from the end user mode of Retool, instead of ids. It seems like the new table column headers can be styled individually like this:
div._8HBl0 > div._c9X6x > div > div:nth-child(1){
background-color: green !important;
}