mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
Tried to update the animations for documentation and utterly failed. Sad face. Line 89 of demo.css
This commit is contained in:
parent
f23464c58c
commit
9c6ef53953
@ -86,16 +86,14 @@ div.expanded h2:before, div.collapsed h2:before {
|
||||
font-size: 9px;
|
||||
font-family: Monaco, monospace;
|
||||
}
|
||||
|
||||
div.collapsed .collapsable {
|
||||
/* Can't seem to get this transition to work :( */
|
||||
div.collapsable {
|
||||
overflow: hidden;
|
||||
clear: both;
|
||||
height: 0;
|
||||
}
|
||||
div.expanded .collapsable {
|
||||
overflow: hidden;
|
||||
clear: both;
|
||||
height: auto;
|
||||
height: 0px;
|
||||
-moz-transition: height .2s linear;
|
||||
-webkit-transition: height .2s linear;
|
||||
transition: height .2s linear;
|
||||
}
|
||||
div.expanded { cursor: pointer; }
|
||||
|
||||
|
2
gui.css
2
gui.css
@ -100,7 +100,7 @@ a.guidat-toggle:hover {
|
||||
border: 0;
|
||||
color: #1ed36f;
|
||||
margin-right: 2px;
|
||||
width: 148px;
|
||||
width: 148px;
|
||||
}
|
||||
|
||||
.guidat-controller.boolean {
|
||||
|
@ -74,8 +74,11 @@
|
||||
|
||||
if(this.className == 'collapsed') {
|
||||
this.className = 'expanded';
|
||||
var children = this.childNodes;
|
||||
this.childNodes[3].style.height = 'auto';
|
||||
} else {
|
||||
this.className = 'collapsed';
|
||||
this.childNodes[3].style.height = '0px';
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user