We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SilverStripe 4 and newer
I think CMS needs some pre-styling to show spinner properly before CSS will be loaded and prevent screen flickering.
That's the way SS CMS looks like before CSS will be loaded.
It can be fixed by adding this snippet directly into html > head
<style> .ss-loading-screen { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: #fafbfc; display: flex; align-items: center; justify-content: center; flex-direction: column; } </style>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Affected Version
SilverStripe 4 and newer
Description
I think CMS needs some pre-styling to show spinner properly before CSS will be loaded and prevent screen flickering.
That's the way SS CMS looks like before CSS will be loaded.
It can be fixed by adding this snippet directly into html > head
The text was updated successfully, but these errors were encountered: