取消 Plone 4.1 上 plone.app.theming 中联系人信息弹出窗口的样式

发布于 2024-12-17 04:48:28 字数 396 浏览 2 评论 0原文

我正在为我的网站创建一个新的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

您的好友蓝忘机已上羡 2024-12-24 04:48:28

登录表单弹出窗口包含在

内。只需查看创建弹出窗口的生成 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文