mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	Remove dashes between organization member avatars on hover (#23034)
On the home page of an organization, there are unexpected dashes between the avatars of the members when hovering over the avatars, as shown in below:   This is because in `fomantic/build/semantic.css` there is a rule `text-decoration: underline;` when hovering over the `<a>` tag. Here, the `<a>` tag has width and height because of the avatar image inside, leading to the unexpected underlines. This PR overrides the `a:hover` rule so the underline does not exist anymore. Co-authored-by: delvh <leon@kske.dev>
This commit is contained in:
		@@ -93,6 +93,10 @@
 | 
				
			|||||||
  &.teams,
 | 
					  &.teams,
 | 
				
			||||||
  &.profile {
 | 
					  &.profile {
 | 
				
			||||||
    .members {
 | 
					    .members {
 | 
				
			||||||
 | 
					      a:hover {
 | 
				
			||||||
 | 
					        text-decoration: none;
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      .ui.avatar {
 | 
					      .ui.avatar {
 | 
				
			||||||
        width: 48px;
 | 
					        width: 48px;
 | 
				
			||||||
        height: 48px;
 | 
					        height: 48px;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user