Mercurial > hg > webaudioevaluationtool
changeset 2305:064b99859511
Closed #40
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Thu, 28 Apr 2016 15:56:21 +0100 |
parents | e4a2a39838db |
children | a5299dfc0814 487f3767aca6 |
files | interfaces/ABX.css interfaces/ABX.js |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/interfaces/ABX.css Thu Apr 28 10:13:20 2016 +0100 +++ b/interfaces/ABX.css Thu Apr 28 15:56:21 2016 +0100 @@ -51,6 +51,10 @@ background-color: #008000; } +div.comparator-selector.inactive{ + background-color: yellow !important; +} + div.comparator-selector span { font-size: 4em; } @@ -75,4 +79,4 @@ position: absolute; top: 10px; left: 120px; -} \ No newline at end of file +}
--- a/interfaces/ABX.js Thu Apr 28 10:13:20 2016 +0100 +++ b/interfaces/ABX.js Thu Apr 28 15:56:21 2016 +0100 @@ -375,6 +375,7 @@ break; } var node = new this.interfaceObject(audioObject,label); + node.box.children[0].classList.add('inactive'); audioObject.bindInterface(node); this.X = node; this.boxHolders.appendChild(node.box);