Notice: The Monaca & Onsen UI Community Forum is shutting down.
For Onsen UI bug reports, feature requests and questions, please use the Onsen UI GitHub issues page. For help with Monaca, please contact Monaca Support Team.
Thank you to all our community for your contributions to the forum. We look forward to hearing from you in the new communication channels.
how to remove ons-popover element's mask?
-
HI,how to remove ons-popover element’s mask?
-
@czpae86 There is a
mask-color="transparent"
attribute to make it invisible. If you want to let clicks go through, then you can select it in CSS:.popover-mask { pointer-events: none; }
. To remove it, you need to do it with JavaScript by selecting.popover-mask
elements.