如何为 ctools 模式窗口设置主题

发布于 2024-08-27 00:53:08 字数 69 浏览 8 评论 0原文

有人知道我如何为 ctools 模式窗口设置主题吗?我尝试将它附带的 css 放入我自己的主题中以覆盖它,但这对我不起作用。

Does anybody know how I can theme the ctools modal window? I've tried putting the css that it comes with in my own theme to over-ride it, but that is not working for me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

离去的眼神 2024-09-03 00:53:09

ctools 文档的一些提示 ctools\help\modal.html

drupal_add_js(array(
    'CToolsModal' => array(
      'modalSize' => array(
        'type' => 'fixed',
        'width' => 450,
        'height' => 350,
        'contentBottom' => 800), 
    ),
  ), 'setting');

some tips for ctools docs ctools\help\modal.html

drupal_add_js(array(
    'CToolsModal' => array(
      'modalSize' => array(
        'type' => 'fixed',
        'width' => 450,
        'height' => 350,
        'contentBottom' => 800), 
    ),
  ), 'setting');
坠似风落 2024-09-03 00:53:09

事实证明这是一个非常容易回答的问题。我将答案放在这里,以防其他人遇到与我相同的问题:

我的错误是我不知道仅包含 modal.css 我的主题文件夹中的文件。

要正确覆盖核心/贡献模块的css文件,请编辑theme.info文件以引用该css:

stylesheets[all][] = modal.css

更多信息可以发现于 http://drupal.org/node/263967

It turns out this was a super easy question to answer. I'm putting the answer here just in case someone else runs into the same problem I did:

My mistake was that I did not know that it wasn't enough to just include a modal.css file in my themes folder.

To correctly override a css file for a core/contributed module, the theme.info file edited to refer to that css:

stylesheets[all][] = modal.css

More information can be found at http://drupal.org/node/263967

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