如何在 Drupal 7 .info 文件中定义多个样式表

发布于 2024-11-10 04:51:26 字数 331 浏览 0 评论 0原文

我想在 Drupal 7 .info 文件中定义多个样式表。这就是我正在做的:

stylesheets[all][] = support/default.css
stylesheets[all][] = support/article.css
stylesheets[all][] = support/tinydropdown.css
scripts[] = support/tinydropdown.js

在此设置中加载的唯一内容是第一个样式表。另外两个样式表和 JavaScript 不会加载。我尝试过清除缓存并重新加载主题,但它对我不起作用。

我做错了什么?

I would like to define multiple stylesheets in the Drupal 7 .info file. This is what I am doing:

stylesheets[all][] = support/default.css
stylesheets[all][] = support/article.css
stylesheets[all][] = support/tinydropdown.css
scripts[] = support/tinydropdown.js

The only thing that loads in this setting is the first stylesheet. The other two stylesheets and the javascript don't load. I have tried clearing the cache and reloading the theme, but it does not work for me.

What am I doing wrong?

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

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

发布评论

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

评论(2

江南月 2024-11-17 04:51:26

刚刚遇到这个。

尝试添加 0、1、2 等

stylesheets[all][0] = support/default.css
stylesheets[all][1] = support/article.css
stylesheets[all][2] = support/tinydropdown.css

Just came across this.

Try adding 0, 1, 2 etc

stylesheets[all][0] = support/default.css
stylesheets[all][1] = support/article.css
stylesheets[all][2] = support/tinydropdown.css
鱼忆七猫命九 2024-11-17 04:51:26

我刚刚遇到了这个。请参阅此文档:
https://drupal.org/node/171209

也请注意注释。

.info 文件已缓存。在清除缓存并读取修订后的 .info 之前,不会检测到添加或删除任何样式。 (不要将其与主题注册表混淆。)您必须清除缓存才能看到更改。

I just ran into this. See this document:
https://drupal.org/node/171209

Note the note, too.

The .info file is cached. Adding or removing any styles will not be detected until the cache is cleared and the revised .info is read. (Do not confuse this with the theme registry.) You must clear the cache to see the changes.

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