mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 09:15:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			577 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			577 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
#server_list table {
 | 
						|
	max-width: 100%;
 | 
						|
	width: 100%;
 | 
						|
	background-color: transparent;
 | 
						|
	border-collapse: collapse;
 | 
						|
	border-spacing: 0;
 | 
						|
	font-size: small;
 | 
						|
}
 | 
						|
 | 
						|
#server_list td, #server_list th {
 | 
						|
	border: 1px solid gray;
 | 
						|
}
 | 
						|
 | 
						|
.mts_hover_list{
 | 
						|
	visibility: hidden;
 | 
						|
	border: gray solid 1px;
 | 
						|
	position: absolute;
 | 
						|
	z-index: 100;
 | 
						|
	background-color: white;
 | 
						|
	padding: 0.5em;
 | 
						|
}
 | 
						|
 | 
						|
td:hover .mts_hover_list {
 | 
						|
	visibility: visible;
 | 
						|
}
 | 
						|
 | 
						|
.mts_hover_list_text, .mts_tooltip {
 | 
						|
	text-decoration: underline;
 | 
						|
	text-decoration-style: dashed;
 | 
						|
}
 | 
						|
 | 
						|
.clickable {
 | 
						|
	text-decoration: underline;
 | 
						|
	cursor: pointer;
 | 
						|
} |