[Frontend] Delay visibility of progress bar

Resolves #1168
This commit is contained in:
David Hudson 2016-09-12 15:28:04 +09:00
parent 7b84febfde
commit 24cb72e5b5

View File

@ -19,8 +19,18 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
.overlay {
font-size: 90%;
z-index: 5;
@include keyframes(fadeInFromNone) {
0% { display: none; opacity: 0; }
1% { display: block; opacity: 0; }
95% { display: block; opacity: 0; }
100% { display: block; opacity: 1; }
}
@include animation(fadeInFromNone 100ms ease-in);
.blocker {
background: $colorOvrBlocker;
z-index: 100;