I try to set background color to ngb-pagination item for angular2, but is does not work.
<ngb-pagination style="background-color:gray;" [collectionSize]="120" [(page)]="page" [maxSize]="5" [boundaryLinks]="true">
Thank you.
I found the solution, thank for helping. In my condition problem solved like that in my css file. To overwrite the pagination stuff just using /deep/
keyword.
/deep/ .pagination .page-item .page-link {
border-radius: 0 !important;
}
/deep/ .pagination .page-link {
border-top-style: none !important;
border-bottom-style: none !important;
background-color: #f6f6f6 !important;
color: black !important;
}
Thank you.