This is something I need to ask @death.au about. Because something about my theme and his “Sliding Panes” plugin causes this, when only one note is open.
Because I don’t know what I’m really doing with CSS, I just went into the Sliding Pane plug-in and found the word “gradient” and then figured out if I changed the “Height” values to “O” that this quirk would go away.
I just had to change the two “Height” values below:
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header > .view-header-title-container:after {
width: 100%;
height: 0px;
top: unset;
bottom: 0;
background: linear-gradient(to bottom, transparent, var(--background-secondary));
}
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header > .view-header-title-container:before {
content: "";
position: absolute;
width: 100%;
height: 0px;
top: 0;
bottom: unset;
background: linear-gradient(to top, transparent, var(--background-secondary));
}