This commit is contained in:
Oscar Plaisant
2024-12-25 22:30:24 +01:00
parent 4a9afe51fa
commit 602a41e7f8
2098 changed files with 11681 additions and 2271 deletions

28
.obsidian/snippets/[ui] Top fade.css vendored Normal file
View File

@@ -0,0 +1,28 @@
/*
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
}