I have the following HTML that uses the UI.Bootstrap accordion control
<accordion-group ng-repeat="kvp in jobTemplate.jobMasterConfigGroups[$index].jobMasterConfigs" is-open="kvp.active">
<accordion-heading>
<i class="fa" ng-class="{'fa-minus': kvp.active, 'fa-plus': !kvp.active}"></i>
<span>Key: <strong>{{kvp.key | cut:false:15}}</strong> Value: <strong>{{kvp.value | cut:false:50}}</strong></span>
</accordion-heading>
....
What I want is for the accordion-heading to be a different colour (the entire heading bar background) if kvp.IsOverridden == true
I'm not sure of the best way to do this, can anyone suggest?