Ionic Info
@ionic/angular: "4.0.0-beta.1"
Describe the Feature Request
I would like to be able to style the swiper-pagination element of the slides
For example, in my v3 app, I display the pagination as progressbar at the bottom of the slides
Because of shadow dom, this isn't possible anymore, a style like the following won't be applied
div.swiper-pagination.swiper-pagination-progressbar {
top: inherit;
bottom: 0;
}
Related Code
slideOptsProgressbar: SwiperOptions = {
pagination: {
el: '.swiper-pagination',
type: 'progressbar'
}
};
<ion-slides pager="true" [options]="slideOptsProgressbar">
</ion-slides>