-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
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
z-index issue on progress bar fade out (with fixed-position object on the top of the page?) #56
Comments
Did you already find a solution for your problem? I have exactly the same. |
i found a solution for this: the position element is important for the order of the elements. So, check if your nprogress class has a position. |
Fixed it with: #nprogress {
position: relative;
z-index: 9999999;
} |
Thanks for the fix @Haihappen 👍 |
thanks @Haihappen for the fix. I had a similar issue, spent hours trying to figure out why NProgress did not fade out (opacity) after applying |
I have a fixed-position box with a background colour that is fixed to the top of the page. When the progress bar fades out, for some reason it seems to quickly flash behind the top-box for a split second.
http://jsbin.com/AnIMeWu/3/
Is this an issue with the fadeout animation? Is there a way to remedy this?
The text was updated successfully, but these errors were encountered: