I have a dynamic ionic list and I would like to change the color of specific item inside the list,
let say that there are my items and I want to change the second bullet point to red, I'm using angular and ionic, I'll appreciate any help
the html code is this
<ion-list class="list">
<ion-item ng-repeat="topic in topics">
<div class="item-group">
<div class="left-group">
<div class="vertical-small-line"></div>
<div class="bullet"></div>
<div class="vertical-line"></div>
</div>
<div class="right-group">
<h3><a href="">{{topic.title}}</a></h3>
<p class="block-ellipsis">{{topic.summary}}</p>
</div>
</ion-item>
</ion-list>
https://i.stack.imgur.com/nLHjD.png
Regards