123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- .page-item {
- &.active .page-link {
- box-shadow: $pagination-active-box-shadow;
- }
- .page-link,
- span {
- display: $page-link-display;
- align-items: $page-link-align-items;
- justify-content: $page-link-justify-content;
- color: $secondary;
- padding: 0;
- margin: $page-link-margin;
- border-radius: $page-link-radius !important;
- width: $page-link-width;
- height: $page-link-height;
- font-size: $font-size-sm;
- }
- }
- .pagination-lg {
- .page-item {
- .page-link,
- span {
- width: $page-link-width-lg;
- height: $page-link-height-lg;
- line-height: $page-link-line-height-lg;
- }
- }
- }
- .pagination-sm {
- .page-item {
- .page-link,
- span {
- width: $page-link-width-sm;
- height: $page-link-height-sm;
- line-height: $page-link-line-height-sm;
- }
- }
- }
- // Colors
- .pagination {
- @each $name, $value in $theme-gradient-colors {
- &.pagination-#{$name} {
- .page-item.active > .page-link {
- &,
- &:focus,
- &:hover {
- @include gradient-directional(nth($value, 1) 0%, nth($value, -1) 100%, $deg: 310deg);
- border: none;
- color: $white;
- }
- }
- }
- }
- }
|