/* Name: reviewable.css Author: Isaac Corbrey A CSS snippet for Obsidian. This trims the decoration from embeds so they appear inline and hides properties from the Spaced Repetition plugin. */ .reviewable .markdown-embed, .reviewable .file-embed { border: 0 !important; box-shadow: none !important; background: transparent !important; padding: 0 !important; margin: 0 !important; overflow: visible !important; } /* Let the embedded content render fully */ .reviewable .markdown-embed-content, .reviewable .markdown-embed-content > .markdown-preview-view { background: transparent !important; overflow: visible !important; border: 0 !important; padding-left: 0; } .reviewable .markdown-embed-content p:last-child { margin-bottom: 0; } /* Hide title bar and “open” icon */ .reviewable .markdown-embed-title, .reviewable .markdown-embed-link, .reviewable .file-embed-link { display: none !important; } /* Hide all sr-* properties in Properties view */ .reviewable .metadata-property[data-property-key^="sr-"] { display: none !important; }