Mootools LightFace 插件和 Mootools 工具提示集成
我在我的项目中使用由 davidwalsh 编写的 Light Face 插件。我正在从另一个页面加载内容。该页面包含一个表单。我希望表单元素上有 mootools 工具提示,但工具提示未显示在浅色面上对话。如果我删除 lightface.css 文件,工具提示将正确显示。所以这可能是一个 css 错误,但我无法检测发生了什么,而且我是 css 的新手。
I am using Light Face plugin written by davidwalsh in my project. In that I am loading content from another page. That page contains a form. I want mootools tooltip on form elements, but tool tips are not being displayed in the light face dialog. If I remove the lightface.css file, the tooltips are displayed correctly. So it may be a css error, but I am unable to detect whats happening and I am a newbie in css.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我能够在 davidwalsh 本人的帮助下解决这个问题。这是一个与 z-index 相关的问题。 lightface 的
z-index
为9001
,我将工具提示的z-index
更改为9002
并且将工具提示的“位置”更改为“相对”。I am able to solve the question by the help of davidwalsh himself. It was a problem related with z-index. The
z-index
of the lightface was9001
, I changed thez-index
of the tooltip to9002
and changed "position" of tool tip to "relative".