mirror of
				https://github.com/loof2736/scyfin.git
				synced 2025-11-04 00:18:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			799 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			799 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
/* Display chapters on time bar */
 | 
						|
.sliderMarker {
 | 
						|
    position: absolute !important;
 | 
						|
    width: 2px !important;
 | 
						|
    height: 10px !important;
 | 
						|
    transform: translate3d(0, 40%, 0) !important;
 | 
						|
    display: block !important;
 | 
						|
}
 | 
						|
 | 
						|
.sliderMarker.unwatched {
 | 
						|
    background-color: rgba(255, 255, 255, 0.3) !important;
 | 
						|
}
 | 
						|
 | 
						|
.sliderMarker.watched {
 | 
						|
    background-color: #007da7 !important;
 | 
						|
    z-index: 1 !important;
 | 
						|
}
 | 
						|
 | 
						|
/* Remove first and last chapters */
 | 
						|
.sliderMarker:first-of-type.unwatched {
 | 
						|
    background-color: transparent !important; 
 | 
						|
}
 | 
						|
 | 
						|
.sliderMarker:last-of-type.unwatched {
 | 
						|
    background-color: transparent !important; 
 | 
						|
}
 | 
						|
 | 
						|
.sliderMarker:first-of-type.watched {
 | 
						|
    background-color: transparent !important; 
 | 
						|
}
 | 
						|
 | 
						|
.sliderMarker:last-of-type.watched {
 | 
						|
    background-color: transparent !important; 
 | 
						|
} |