mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	add .suppressed link class (#29847)
				
					
				
			Extract from https://github.com/go-gitea/gitea/pull/29344. With this class it's possible to have links that don't color on hover. It will be useful for https://github.com/go-gitea/gitea/pull/29429.
This commit is contained in:
		@@ -149,24 +149,32 @@ a {
 | 
			
		||||
  text-decoration-skip-ink: all;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* muted link = only colored when hovered */
 | 
			
		||||
/* silenced link = never colored */
 | 
			
		||||
/* a = always colored, underlined on hover */
 | 
			
		||||
/* a.muted = colored on hover, underlined on hover */
 | 
			
		||||
/* a.suppressed = never colored, underlined on hover */
 | 
			
		||||
/* a.silenced = never colored, never underlined */
 | 
			
		||||
 | 
			
		||||
a.muted,
 | 
			
		||||
a.suppressed,
 | 
			
		||||
a.silenced,
 | 
			
		||||
.muted-links a {
 | 
			
		||||
  color: inherit;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
a:hover,
 | 
			
		||||
a.suppressed:hover,
 | 
			
		||||
a.muted:hover,
 | 
			
		||||
a.muted:hover [class*="color-text"],
 | 
			
		||||
.muted-links a:hover {
 | 
			
		||||
  color: var(--color-primary);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
a.silenced:hover {
 | 
			
		||||
a.silenced:hover,
 | 
			
		||||
a.suppressed:hover {
 | 
			
		||||
  color: inherit;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
a.silenced:hover {
 | 
			
		||||
  text-decoration: none;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user