Hilighting is not working with CTI Flex theme http://drupal.org/project/cti_flex, a zen based theme, though it works fine with some other themes (not zen based), that are installed in my system.

after some investigation adding the "td" selector in views_table_highlighter.css worked !

for example for red color :


tr.views-table-highlighter-red.odd td            { background-color: #f99; }
tr.views-table-highlighter-red.even td            { background-color: #fbb; }
tr.views-table-highlighter-red.odd  .active td    { background-color: #f88; }
tr.views-table-highlighter-red.even .active td     { background-color: #faa; }

Comments

jvieille’s picture

Same for Acquia Marina theme.
I added td to every single line of this css
Put that in the local.css file in the theme directory of the site instead :

tr.views-table-highlighter-red.odd td  { background-color: #f99; }
tr.views-table-highlighter-red.even td             { background-color: #fbb; }
tr.views-table-highlighter-red.odd  .active td  { background-color: #f88; }
tr.views-table-highlighter-red.even .active td { background-color: #faa; }

tr.views-table-highlighter-green.odd td          { background-color: #9f9; }
tr.views-table-highlighter-green.even td         { background-color: #bfb; }
tr.views-table-highlighter-green.odd  .active td  { background-color: #8f8; }
tr.views-table-highlighter-green.even .active td { background-color: #afa; }

tr.views-table-highlighter-blue.odd td             { background-color: #99f; }
tr.views-table-highlighter-blue.even td           { background-color: #bbf; }
tr.views-table-highlighter-blue.odd  .active td  { background-color: #88f; }
tr.views-table-highlighter-blue.even .active td { background-color: #aaf; }

tr.views-table-highlighter-yellow.odd td           { background-color: #ff9; }
tr.views-table-highlighter-yellow.even td         { background-color: #ffb; }
tr.views-table-highlighter-yellow.odd  .active td  { background-color: #ff8; }
tr.views-table-highlighter-yellow.even .active td  { background-color: #ffa; }

tr.views-table-highlighter-magenta.odd td          { background-color: #f9f; }
tr.views-table-highlighter-magenta.even td         { background-color: #fbf; }
tr.views-table-highlighter-magenta.odd  .active td { background-color: #f8f; }
tr.views-table-highlighter-magenta.even .active td { background-color: #faf; }

tr.views-table-highlighter-cyan.odd td             { background-color: #9ff; }
tr.views-table-highlighter-cyan.even td            { background-color: #bff; }
tr.views-table-highlighter-cyan.odd  .active td    { background-color: #8ff; }
tr.views-table-highlighter-cyan.even .active td    { background-color: #aff; }