diff options
author | silverwind <me@silverwind.io> | 2023-10-08 15:31:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-08 15:31:47 +0200 |
commit | 0fb729402790efa302628985c10796feee819b85 (patch) | |
tree | 10fd95a80916e17440ee9fb579bef2d8605ce9fd | |
parent | 8e1ef5787f9c212cd6106a556b0705f9d8e89163 (diff) | |
download | gitea-0fb729402790efa302628985c10796feee819b85.tar.gz gitea-0fb729402790efa302628985c10796feee819b85.zip |
Fix mermaid flowchart margin issue (#27503) (#27516)
Backport https://github.com/go-gitea/gitea/pull/27503 to 1.21
Fixes: https://github.com/go-gitea/gitea/issues/27435
Related: https://github.com/mermaid-js/mermaid/issues/4907
<img width="924" alt="image"
src="https://github.com/go-gitea/gitea/assets/115237/494a1d2e-4c56-48d0-9843-82a5e5aa977e">
-rw-r--r-- | web_src/js/markup/mermaid.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/web_src/js/markup/mermaid.js b/web_src/js/markup/mermaid.js index 865a414c93..84d88a94c3 100644 --- a/web_src/js/markup/mermaid.js +++ b/web_src/js/markup/mermaid.js @@ -4,9 +4,11 @@ import {displayError} from './common.js'; const {mermaidMaxSourceCharacters} = window.config; +// margin removal is for https://github.com/mermaid-js/mermaid/issues/4907 const iframeCss = `:root {color-scheme: normal} body {margin: 0; padding: 0; overflow: hidden} -#mermaid {display: block; margin: 0 auto}`; +#mermaid {display: block; margin: 0 auto} +blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {margin: 0}`; export async function renderMermaid() { const els = document.querySelectorAll('.markup code.language-mermaid'); |