-
Notifications
You must be signed in to change notification settings - Fork 95
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
translate3D preventing ng-gallery to go fullscreen #37
Comments
Hey! Sorry for late reply. I never use ng-gallery inside v-accordion, but if this is really an issue with translate3d CSS property, the only workaround that comes to my mind is to simply override v-accordion default styling, like so: .vAccordion--default v-pane-content > div {
transform: none;
}
.vAccordion--default v-pane.is-expanded > v-pane-content > div {
transform: none;
} |
Thanks a lot for your response! |
Try to use the v1.5.1 release, remember to override v-pane-content translate3d property and let me know if this helps. |
For now, I'll close the issue, but feel free to re-open if you're still having problems. |
Fixed with 1.5.1! |
Hey there! Thanks for the hard work 👍
I'm using v-Accordion and inside it, I've put a ng-gallery component. When you click on a image, it is supposed to overlay the full screen. The thing is that it only overlays v-pane-content.
I've asked this on ng-gallery issues and StackOverflow.
Given a comment there and another similar issue posted on ng-gallery wiki, I realized it has something to do with v-Accordion's translate3d CSS property.
Do you know any workaround so I can keep ng-gallery inside an accordion, but allowing it to cover the whole body?
Thanks!
The text was updated successfully, but these errors were encountered: