在 SCSS 部分中使用 Rails 3.1 资源路径

发布于 2024-12-04 18:43:20 字数 819 浏览 2 评论 0原文

我有以下设置:

app/assets/stylesheets/application.css.scss

/*
*= require_self
*= require fancybox
*/

/* COLORS.. */
/* MIXINS... */
/* FONT STACKS... */

/* IMPORTS */
@import "reset";
@import "supergrid";
@import "rails";
@import "app";
@import "forms";
@import "layout";

在我的各个部分中,我的资产路径确实存在问题。当在 application.css.scss 或清单加载的任何内容中时,我可以使用:

.example { background-image: image-path("background.png"); }

但是,当我使用部分时,例如我的 _layout.css.scss部分,当我尝试相同的操作时,背景图像属性只是从编译的文件中省略。似乎 SCSS 资产助手在部分中不可用?

有没有人让它工作,我错过了一些明显的东西吗?或者根本不可能在部分中使用资产助手?如果是这样,这就是一个非常非常大的问题,因为我的整个应用程序结构依赖于在部分之间共享的 SCSS 变量和 mixin。

我知道变量和 mixin 不会在 sprocket 清单中共享,因此如果部分无法访问资产助手,那么我将考虑必须将所有内容连接到单个 scss 文件中,这几乎违背了 Sass 和 Sprockets 的目的。

任何帮助将非常感激!

I have the following setup:

app/assets/stylesheets/application.css.scss

/*
*= require_self
*= require fancybox
*/

/* COLORS.. */
/* MIXINS... */
/* FONT STACKS... */

/* IMPORTS */
@import "reset";
@import "supergrid";
@import "rails";
@import "app";
@import "forms";
@import "layout";

In my various partials I'm having a real problem with the asset paths. When inside application.css.scss or anything loaded by the manifest, I can use:

.example { background-image: image-path("background.png"); }

However, when I'm using a partial, such as my _layout.css.scss partial, when I try the same thing the background-image property is simply omitted from the compiled file. It seems the SCSS asset helpers are not available inside partials?

Has anyone gotten this to work, am I missing something obvious? Or is it simply impossible to use asset helpers in partials? If so this is a major, MAJOR problem, as my entire app structure depends on SCSS variables and mixins which are shared among the partials.

I know that variables and mixins are not shared across the sprockets manifest, so if partials cannot access the asset helpers then I'm looking at having to concatenate everything into a single scss file, which pretty much defeats the purpose of both Sass and Sprockets.

Any help would be very much appreciated!

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

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

发布评论

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

评论(1

微暖i 2024-12-11 18:43:20

奇怪的是,它应该可以工作..只有几个想法:

  1. 您是否使用最新的宝石导轨和链轮?
  2. 尝试将 .css.scss 重命名为 .scss
  3. 尝试将 image-path('background.png') 替换为 asset-url('background.png', image)image-url('background.png')
  4. 尝试从 application.css.scss 中删除 require_self
  5. 尝试从 application.css.scss 中删除所有指令并导入这些文件与@import

Strange, it should work.. Just few ideas:

  1. Are you using up-to-date gems sass-rails and sprockets?
  2. Try to rename .css.scss to .scss
  3. Try to replace image-path('background.png') with asset-url('background.png', image) or image-url('background.png')
  4. Try to remove require_self from application.css.scss
  5. Try to remove all directives from application.css.scss and import those files with @import
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文