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-size: 9px;
|
||||||
font-family: Monaco, monospace;
|
font-family: Monaco, monospace;
|
||||||
}
|
}
|
||||||
|
/* Can't seem to get this transition to work :( */
|
||||||
div.collapsed .collapsable {
|
div.collapsable {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
clear: both;
|
clear: both;
|
||||||
height: 0;
|
height: 0px;
|
||||||
}
|
-moz-transition: height .2s linear;
|
||||||
div.expanded .collapsable {
|
-webkit-transition: height .2s linear;
|
||||||
overflow: hidden;
|
transition: height .2s linear;
|
||||||
clear: both;
|
|
||||||
height: auto;
|
|
||||||
}
|
}
|
||||||
div.expanded { cursor: pointer; }
|
div.expanded { cursor: pointer; }
|
||||||
|
|
||||||
|
2
gui.css
2
gui.css
@ -100,7 +100,7 @@ a.guidat-toggle:hover {
|
|||||||
border: 0;
|
border: 0;
|
||||||
color: #1ed36f;
|
color: #1ed36f;
|
||||||
margin-right: 2px;
|
margin-right: 2px;
|
||||||
width: 148px;
|
width: 148px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.guidat-controller.boolean {
|
.guidat-controller.boolean {
|
||||||
|
@ -74,8 +74,11 @@
|
|||||||
|
|
||||||
if(this.className == 'collapsed') {
|
if(this.className == 'collapsed') {
|
||||||
this.className = 'expanded';
|
this.className = 'expanded';
|
||||||
|
var children = this.childNodes;
|
||||||
|
this.childNodes[3].style.height = 'auto';
|
||||||
} else {
|
} else {
|
||||||
this.className = 'collapsed';
|
this.className = 'collapsed';
|
||||||
|
this.childNodes[3].style.height = '0px';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user