What I’m trying to do
I’d like to display the edit-icon on the top left corner of the popout windows that appear when hovering over an internal link.
This used to work in an earlier Obsidian release but eventually stopped working.
Things I have tried
Quite a while ago someone in this forum suggested this CSS code:
/* Link zum Öffnen der Notitz rechts oben */
.popover.hover-popover.is-loaded .markdown-embed-link{
display:block;
}
.file-embed-link svg,.markdown-embed-link svg{
width:24px;height:24px;opacity:1.0;
}
.markdown-embed-link{
top:0.8em;right:0.8em;
}
I was happy with this, it worked fine for a while.
With the current version, this code doesn’t work anymore, no edit-icon is displayed.
What can I do to get the icon back to be able to open the note from within the popup?