JDeveloper 12.1.3
Looked at these forums but could not find applicable solution in 12c. Some threads contained old invalid links
So, what I am trying to do is to display adf table, where CERTAIN ENTIRE rows will have specified color. The row color depends on the column attribute value. So I tried to do it for every single column using EL:
inlineStyle="#{row.Overlap=='1'?'background-color:Red':'background-color:Green'}"
The result looks terrible, not entire table cell is colored.

I read somewhere to define CSS for the table but then how to use EL to apply it only to certain rows?