Merge pull request #31056 from sftim/20211221_mermaid_improvements

Improvements for Mermaid support
This commit is contained in:
Kubernetes Prow Robot
2022-02-19 14:22:09 -08:00
committed by GitHub
5 changed files with 33 additions and 12 deletions
+17
View File
@@ -771,6 +771,10 @@ figure {
max-width: clamp(0vw, 95vw, 100%);
max-height: calc(80vh - 8rem);
}
figure + noscript > *{
max-width: calc(max(100%, 100vw));
}
}
@media only screen and (min-width: 768px) {
@@ -793,6 +797,9 @@ figure {
max-height: calc(100vh - 10rem);
}
}
figure + noscript > * {
max-width: 80%;
}
}
// Indent definition lists
@@ -825,3 +832,13 @@ dl {
margin-bottom: 1em;
}
}
.no-js .mermaid {
display: none;
}
div.alert > em.javascript-required {
display: inline-block;
min-height: 1.5em;
margin: calc(max(4em, ( 8vh + 4em ) / 2)) 0 0.25em 0;
}