I have ionic slide box, I want to give border color white for active bullet. here is live example to edit demo if you see active bullet has black color, and rest inactive have gray, I want border for active bullet that should look like as below img.
Here is what I tried so far, I tried with stroke
.slider-pager .slider-pager-page.active {
color: #000;
fill: #000;
stroke: #fff;
background-color: #fff;
border-radius: 50%;
/* height: 17px; */
stroke-width: 3px;
}
then I tried with
.slider-pager .slider-pager-page.active {
border:1px solid #fff;
border-radius:50%;
}
[1]: http://codepen.io/ionic/pen/AjgEB