Make H3 sections in node help collapsible

This commit is contained in:
Nick O'Leary
2017-04-07 13:30:12 +01:00
parent ea929b00e3
commit 2453719a87
2 changed files with 31 additions and 1 deletions

View File

@@ -179,6 +179,23 @@ div.node-info {
}
}
}
.node-info-header {
i {
width: 10px;
text-align: center;
transition: transform 0.2s ease-in-out;
margin-right: 4px;
}
color: #333;
&:hover, &:focus {
text-decoration: none;
}
&.expanded {
i {
transform: rotate(90deg);
}
}
}
}
.sidebar-node-info-stack {