don't flash the no-javascript message while loading

This commit is contained in:
Hannes Mannerheim 2016-02-11 14:55:20 +01:00
parent 45b50d3387
commit 596b4b8e02

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 {