mirror of
				https://github.com/JKorf/CryptoExchange.Net
				synced 2025-11-04 04:17:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			474 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			474 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
// stylelint-disable declaration-no-important
 | 
						|
 | 
						|
// Typography
 | 
						|
 | 
						|
@mixin text-emphasis-variant($parent, $color, $ignore-warning: false) {
 | 
						|
  #{$parent} {
 | 
						|
    color: $color !important;
 | 
						|
  }
 | 
						|
  @if $emphasized-link-hover-darken-percentage != 0 {
 | 
						|
    a#{$parent} {
 | 
						|
      @include hover-focus() {
 | 
						|
        color: darken($color, $emphasized-link-hover-darken-percentage) !important;
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
  @include deprecate("`text-emphasis-variant()`", "v4.4.0", "v5", $ignore-warning);
 | 
						|
}
 |