28 lines
		
	
	
		
			741 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			741 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
/*
 | 
						|
    Editor top fade
 | 
						|
    This is a visual tweak for use with Floating Tab Header or Tab Header on bottom snippets
 | 
						|
    https://github.com/replete/obsidian-minimal-theme-css-snippets
 | 
						|
*/
 | 
						|
 | 
						|
.cm-content::before {
 | 
						|
    content:'';
 | 
						|
    height:18px;
 | 
						|
    background:linear-gradient(to bottom, var(--background-primary), transparent);
 | 
						|
    left:0;
 | 
						|
    position:fixed;
 | 
						|
    top:0px;
 | 
						|
    width:calc(100% - var(--scrollbar-size)); /* depends on var from Native Custom Scrollbars */
 | 
						|
    pointer-events:none;
 | 
						|
    z-index:100;
 | 
						|
    border-top:1px solid var(--background-primary);
 | 
						|
}
 | 
						|
 | 
						|
    .theme-dark .cm-content::before {
 | 
						|
        opacity:0.5;
 | 
						|
        height:10px;
 | 
						|
    }
 | 
						|
 | 
						|
/* Hide if there's a banner */
 | 
						|
.cm-content:has(.mk-header img)::after {
 | 
						|
    display:none
 | 
						|
} |