Allow multi-panel to keep one open only

This commit is contained in:
Jake Archibald
2018-10-24 11:20:38 +02:00
parent b34dca744d
commit 04492f8f5e
6 changed files with 97 additions and 40 deletions

View File

@@ -0,0 +1,11 @@
.panel-heading {
background:gray;
}
.panel-content {
height:0px;
overflow:scroll;
transition: height 1s;
}
.panel-content[expanded] {
height:auto;
}