Can anyone suggest CSS to hide the properties field in an embedded note?
TIA
Can anyone suggest CSS to hide the properties field in an embedded note?
TIA
This one …
```css
.markdown-embed-content.node-insert-event .metadata-container {
display: none !important;
}
```
… works for me. I tried in edit and reading mode. Hope it helps you to play further.
Cheers, Marko
That didn’t work for me, but I understand (after running a search at the Discord forum) that the issue will be fixed with the next update.
This is working on my end:
.markdown-embed .metadata-container .is-collapsed,
.markdown-embed .metadata-container.is-collapsed {
display: none;
padding-block: 0;
}
but yeah, it seems a bug and will be fixed in the next patch.
Thanks so much! That worked for me. I was going to be miserable until they fixed that because I use so many embedded notes.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.