Warning, /iDDS/monitor/data/scss/bootstrap/mixins/_pagination.scss is written in an unsupported language. File is not indexed.
0001 // Pagination
0002
0003 @mixin pagination-size($padding-y, $padding-x, $font-size, $border-radius) {
0004 .page-link {
0005 padding: $padding-y $padding-x;
0006 @include font-size($font-size);
0007 }
0008
0009 .page-item {
0010 @if $pagination-margin-start == (-$pagination-border-width) {
0011 &:first-child {
0012 .page-link {
0013 @include border-start-radius($border-radius);
0014 }
0015 }
0016
0017 &:last-child {
0018 .page-link {
0019 @include border-end-radius($border-radius);
0020 }
0021 }
0022 } @else {
0023 //Add border-radius to all pageLinks in case they have left margin
0024 .page-link {
0025 @include border-radius($border-radius);
0026 }
0027 }
0028 }
0029 }