Add visualizer for IMFS state

This commit is contained in:
Lucien Greathouse
2019-09-24 18:04:25 -07:00
parent 0f2e2406e8
commit 26fc097672
3 changed files with 132 additions and 3 deletions

View File

@@ -107,4 +107,30 @@ img {
.instance-children {
padding: 0.5rem 0 0.5rem 1rem;
}
.imfs-entry {
}
.imfs-entry-name {
position: relative;
}
.imfs-entry-children .imfs-entry-name::before {
content: "";
width: 0.8rem;
height: 1px;
background-color: #999;
position: absolute;
top: 50%;
left: -1rem;
}
.imfs-entry-note {
font-style: italic;
}
.imfs-entry-children {
padding-left: 1rem;
border-left: 1px solid #999;
}