update rename dialog

Former-commit-id: 1f5dcf5a0ede5e1da1dc5949efe74b9adbe81fea
This commit is contained in:
Henrique Dias
2016-12-31 18:35:27 +00:00
parent c47a66814d
commit 9145407f67
4 changed files with 73 additions and 63 deletions

View File

@@ -858,13 +858,15 @@ header .actions {
* PROMPT *
* * * * * * * * * * * * * * * */
.overlay, .prompt {
.overlay,
.prompt {
opacity: 0;
z-index: -1;
transition: .1s ease all;
transition: .1s ease opacity, z-index;
}
.overlay.active, .prompt.active {
.overlay.active,
.prompt.active {
z-index: 9999999;
opacity: 1;
}
@@ -874,8 +876,12 @@ header .actions {
position: fixed;
top: 0;
left: 0;
height: 0;
width: 0;
}
.overlay.active {
height: 100%;
z-index: -1;
width: 100%;
}