Skip to content
Snippets Groups Projects

Issue #3335371 by beeyayjay,msielski: Make visual display showing entity references.

12 files
+ 1054
0
Compare changes
  • Side-by-side
  • Inline
Files
12
css/diagram.css 0 → 100644
+ 24
0
/* Stylesheet for Content Model Documentation Entity Diagram */
#content-model-documentation-diagram-form {
display: flex;
max-width: 1000px;
border: #ccc solid 1px;
padding: 8px;
margin-bottom: 20px;
}
#content-model-documentation-diagram-form .form-item,
#content-model-documentation-diagram-form #bundles {
flex: auto;
margin: 0 12px;
}
#content-model-documentation-diagram-form #submit_button {
margin: 10px 12px;
}
/* Default mermaid elements to hidden, then show with JS to prevent FOUC. */
.mermaid {
opacity: 0;
}
Loading