取消 Plone 4.1 上 plone.app.theming 中联系人信息弹出窗口的样式
我正在为我的网站创建一个新的 plone.app.theming (Diazo) 主题。我的rules.xml有这样的规则:
<theme href="theme.html" css:if-content="#visual-portal-wrapper" />
这会取消许多弹出窗口的样式,但不会取消联系人信息AJAX弹出框的样式,因为它是空的。我可以使用以下规则取消它的样式:
<notheme css:if-content="body.template-contact-info"/>
但这意味着任何访问该页面而不是在弹出窗口中呈现它的用户都会看到它没有样式。
如何成功取消联系人信息弹出框的样式?
I am creating a new plone.app.theming (Diazo) theme for my site. My rules.xml has the rule:
<theme href="theme.html" css:if-content="#visual-portal-wrapper" />
This unstyles many popups, but not the contact-info AJAX popup box, which is empty. I can unstyle it using the following rule:
<notheme css:if-content="body.template-contact-info"/>
but this means that any user visiting that page, and not rendering it in a popup, will see it unstyled.
How can I successfully unstyle the contact-info popup box?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
登录表单弹出窗口包含在
内。只需查看创建弹出窗口的生成 HTML,您就会找到可用于选择该特定弹出窗口的类或标识符。
另一方面,您还可以自定义创建这段 HTML 的 Plone 视图。尽管尝试获取类或标识符会容易得多。
The login form popup is wrapped inside a
<div class="pb-ajax">
. Just look at the generated HTML that creates the popup and you will find a class or identifier that you can use to select that particular popup.On the other hand you can also customize the Plone view that creates this piece of HTML. Though it will be much easier to try to get a class or identifier.