@ariehen @asdas UPDATE I have a script that fixes the issue! It is some black magic for me, since I’m not a CSS expert, but the value --callout-blend-mode
is set to darken
, which seems to create the bug.
/*
* This script resets the blend mode of callouts.
* Attempt to fix https://forum.obsidian.md/t/cmd-preview-bugged-with-images-in-callouts
*/
/* :root {
--callout-blend-mode: normal;
} */
.callout {
mix-blend-mode: normal;
}
Could someone try this out and tell me if this script fixes the problem?
I have tested this with the normal callouts, too.