How to highlight a table row based on a date?

Ok, no error…it is applying the class but now it’s not changing the color of the row.  

Here is my CSS:

tbody.nx-skootable-data tbody tr.LeadTab_highlighted-row &nbsp;{ &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp;background-color: #F05423;<br>}


Here is Matt’s snippet:

var field = arguments[0],&nbsp;value = skuid.utils.decodeHTML(arguments[1]),<br>jsDateValue = &nbsp;skuid.time.parseSFDate(value);<br>skuid.ui.fieldRenderers[field.metadata.displaytype][field.mode](field,value);&nbsp;<br>&nbsp;if (field.mode == 'read' &amp;&amp; (jsDateValue &lt; new Date() ))&nbsp;<br>&nbsp; &nbsp; {&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; field.item.element.addClass("LeadTab_highlighted-row");<br>&nbsp;} 


Again, I’m successfully using this on other pages with that CSS…so I don’t think the issue is with the CSS.