don't flash the no-javascript message while loading

This commit is contained in:
Hannes Mannerheim 2016-02-11 14:55:27 +01:00
parent fda1da319f
commit aa828e620c

View File

@ -201,6 +201,13 @@ body.rtl .discard-error-message {
left: 0;
width:100%;
text-align: center;
opacity:0;
animation: fadein 1s ease forwards 1s;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
#accessibility-toggle-link {