Adding fade in/out for upload stuff.

This commit is contained in:
Gunther Brunner
2014-04-30 16:56:22 +09:00
parent 3c79c82810
commit e184cb7c85
2 changed files with 13 additions and 6 deletions

View File

@@ -28,10 +28,6 @@
cursor: pointer;
}
.stf-upload .drop-area .drop-area-text {
font-size: 18px;
}
.stf-upload .dragover {
border-color: #157afb !important;
}
@@ -42,4 +38,15 @@
.stf-upload .manifest-text {
font-size: 10px;
}
}
.stf-upload .drop-area-text {
/*border-top: 1px solid #e2e2e2;*/
opacity: 0;
font-size: 16px;
transition: opacity 0.25s ease-in-out;
}
.stf-upload .drop-area:hover .drop-area-text {
opacity: 1;
}