5krus_obsidian-seamless-embeds/styles.css
5krus 557f942816 Initial release of Seamless Embeds plugin
Makes embedded/transcluded notes visually indistinguishable
from surrounding text in Obsidian.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-27 06:02:24 +01:00

39 lines
855 B
CSS

.markdown-embed,
.markdown-embed-content,
.markdown-embed .markdown-preview-view {
border: none !important;
padding: 0 !important;
margin: 0 !important;
border-left: none !important;
border-right: none !important;
border-radius: 0 !important;
background: none !important;
max-width: 100% !important;
width: 100% !important;
box-shadow: none !important;
}
.markdown-embed .markdown-embed-title,
.markdown-embed .markdown-embed-link {
display: none !important;
}
.internal-embed {
padding: 0 !important;
margin: 0 !important;
max-width: 100% !important;
width: 100% !important;
}
.internal-embed .markdown-embed {
padding: 0 !important;
margin: 0 !important;
}
.markdown-embed hr,
.internal-embed hr {
width: 100% !important;
max-width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
}