Fixed : spectrum pickers where no destroyed properly

This commit is contained in:
jdescottes
2014-03-30 16:20:58 +02:00
parent 7f17e17cff
commit 5b7e07e11e
3 changed files with 56 additions and 8 deletions

View File

@@ -8,23 +8,43 @@
left: 0;
padding: 50px 150px;
overflow: hidden;
box-sizing: border-box;
-moz-box-sizing : border-box;
background-color: rgba(0,0,0,0.8);
opacity: 0;
pointer-events: none;
transition: opacity 0.5s;
color: white;
background: rgba(0,0,0,0.5);
display : none;
}
#dialog-container-wrapper.show {
opacity: 1;
pointer-events: auto;
transition: opacity 0.5s;
}
#dialog-container {
width: 100%;
height: 100%;
margin-top: -1500px;
transition:margin-top 0.5s;
box-sizing: border-box;
-moz-box-sizing : border-box;
border-radius: 3px;
background: rgba(0,0,0,0.9);
overflow: auto;
}
}
.show #dialog-container {
margin-top: 0;
}