22 lines
		
	
	
		
			689 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			689 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
// Pagination
 | 
						|
// *******************************************************************************
 | 
						|
 | 
						|
// Basic Pagination
 | 
						|
@mixin template-pagination-variant($parent, $background, $color: null) {
 | 
						|
  #{$parent} .page-item.active .page-link,
 | 
						|
  #{$parent}.pagination li.active > a:not(.page-link) {
 | 
						|
    &,
 | 
						|
    &:hover,
 | 
						|
    &:focus {
 | 
						|
      border-color: $background;
 | 
						|
      background-color: $background;
 | 
						|
      color: if($color, $color, color-contrast($background));
 | 
						|
      box-shadow: 0 0.125rem 0.25rem rgba(rgba-to-hex($background, $rgba-to-hex-bg), 0.4);
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
@mixin template-pagination-theme($background, $color: null) {
 | 
						|
  @include template-pagination-variant('', $background, $color);
 | 
						|
}
 |