-
-
Notifications
You must be signed in to change notification settings - Fork 20
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
Fix overlay of v-loader #155
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
a6b0580
to
525da97
Compare
I added the |
9b5e4f3
to
aa0f0cf
Compare
@rtritto I've added a commit to your branch with the changes. If it's OK with you, I'll merge it. |
I analysed current
We can simply remove the I did a commit, can you test it? |
The last commit broke several things, why did you delete several The previous commit was okay. |
The main issue is for loader that has the
Why? 2025-02-22.222700.mp4
The poster is visible only when the video isn't started. On initial buffering (init of the player), should the poster be above or below the loader?
I tested (I simply removed the |
@rtritto I've updated the Vercel config, approved preview deployments are now public. Check the latest deploy, accessible from the Vercel comment above. On the latest preview, the control bar is over the poster on init. It should not.
In 28a8c72, you have removed 4 I think moving
Control can't be over the loader without breaking this order which I find correct. An alternative solution would be to probably simply add |
@rtritto is attempting to deploy a commit to the Vlitejs Team on Vercel. A member of the Team first needs to authorize it. |
@yoriiis maybe another alternative is to change the order of the container render and fix the |
This changes break the player. I'm not fan because we have elements outside the container. which normally contains all sub elements. And it could be breaking for user. |
b65b8fa
to
aa0f0cf
Compare
The latest Vercel did not updates with the latest force push. Will check. Sorry but it's still not good, the loader should be displayed on top of the loader when it's the first load. I don't think there's a solution with the I'll have a look later |
Fix #150
Move
z-index
ofv-controlBar
component on top ofv-loader
component.This PR contains a:
Additional Info
Previous
z-index
(5) is in thev-loader
component.Note: the
z-index
ofv-fullscreenButtonDisplay
can be changed to 8. Related PR #156