-
Notifications
You must be signed in to change notification settings - Fork 30
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
Dropdown menu in episodes queue shows below the episode description #1206
Comments
@tmorgan497 oh I hadn't seen that. Hmm should be a simple CSS fix I think. I wonder why the issue happens on the Queue screen, but nowhere else on the website that use the same episode rows? |
Honestly, the queue page is the only place I've looked so far 🙃. I did peruse the codebase a bit to see if I could find a culprit but I'm not familiar with this framework. I've mainly dabbled in Vue.js and Django. I'll keep poking around and see if it occurs elsewhere. |
Dropdown is quite nested on the queue page. Probably why it gets clobbered a bit. No other page has the draggable list. That's the only difference I can see really. I tried raising the z-index of the component. All the way up to 2000, but it still gets rendered behind the next list item when it drops down. If the item is near the bottom of the frame, the menu drops "up" and is in the foreground like it should be. |
Fixes issue podverse#1206 From the docs: unsetZIndex is an optional property that defaults to false. If set to true, then the z-index of all of the list items will be set to "auto" when the list isn't animating. This may have a small performance cost when the list starts and stops animating. Use this if you need to avoid having the list item create a stacking context when it's not being animated.
Fixes issue podverse#1206 From the docs: unsetZIndex is an optional property that defaults to false. If set to true, then the z-index of all of the list items will be set to "auto" when the list isn't animating. This may have a small performance cost when the list starts and stops animating. Use this if you need to avoid having the list item create a stacking context when it's not being animated.
Describe the bug
Dropdown menu on episodes in the queue sometimes show below the episode description, causing the user to click on the episode instead of the menu item
To Reproduce
Steps to reproduce the behavior:
ellipsis-h
)Expected behavior
The 'more' menu should be in front of the episode description or disallow click passthrough
Screenshots
Desktop (please complete the following information):
Smartphone (please complete the following information):
The text was updated successfully, but these errors were encountered: