mirror of
https://github.com/5krus/obsidian-seamless-embeds.git
synced 2026-07-22 07:21:54 +00:00
Makes embedded/transcluded notes visually indistinguishable from surrounding text in Obsidian. Co-authored-by: Cursor <cursoragent@cursor.com>
39 lines
855 B
CSS
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;
|
|
}
|