This is brilliant! Been using it for a while with my custom CSS theme. I have recently had a problem with it, wondering if you could help.
I prefer a slightly less intense drop shadow for Andy Mode.
The default shadow is
.mod-root.workspace-split.mod-vertical > div {
min-width: calc(700px + var(--header-width)); /* <-- 700px is the default theme's "readable" max-width */
box-shadow: 0px 0px 20px 20px rgba(0,0,0,0.25);
position:sticky;
left:0;
}
The shadow I prefer is
.mod-root.workspace-split.mod-vertical > div {
min-width: calc(700px + var(--header-width)); /* <-- 700px is the default theme's "readable" max-width */
box-shadow: -8px 0px 24px -16px rgba(0,0,0,0.33);
position:sticky;
left:0;
}
But updating this line in the “Append Text to File” part of the KM script causes it to break.
Once I’ve edited the shadow value, pressing the Hotkey in KM appends the text to the CSS file correctly. However, it will no longer remove it correctly when I press the key again. I’m stuck in Andy mode until I return the shadow value to its default in KM. Once the value is returned to default, everything works as expected.
Know this is super niche and a minor request, but do you have any idea why editing values in “Append Text to File” section is causing this to break?