Managed to get this working, perhaps not the most elegant ways of doing it though.
1. Changing selected tab colors:
Put following into Custom CSS section
ul.tabRowLast li.tabSelected a{
color:#ffffff !important;
background-color:#24404A !important;
margin-bottom:0px;
border-bottom-color:transparent;
padding-bottom:4px;
}
2. Highlighting tabs based on rules
Put following into Custom JS
function highlightmyTab() {
highlightTab (“myTab”);
}
function highlightTab (tId) {
spjs.$(“.tabUniqueID_”+tId).css(“background-color”,”#24F04A !important”);
}
And then reference highlightmyTab in the relevant rule. By the looks of it, function field under rules does not allow parameters to be passed, so this needs a separate function for each occasion. Alexander, am I getting this right ?
I like the way how this highlights a tab, with and outside border instead of changing its color.
Cagri