0

我使用 Sencha ExtJS 和compass compileandsencha splice命令创建了一个自定义主题。

我的文件夹结构如下:

/ext-4.1.0 -- This is where the stock SDK resides
/resources -- copied from the SDK template, as per the instructions
/resources/sass -- This is where my SASS and confif.rb file reside
/resources/css -- This is where compass compiles my my-ext-theme.css
/resources/images/foo/bar.gif -- This is where sencha splice creates my GIFs.

问题是,新编译/resources/css/my-ext-theme.css的指的是所有具有相对路径的图像,如../../ext-4.1.0/resources/themes/images/default/foo/bar.gif.

为什么我的自定义主题编译为引用库存图像文件夹而不是我的自定义图像?

以下是我config.rb文件中的关键参数:

$ext_path = "../../ext-4.1.0"
sass_path = File.dirname(__FILE__)
css_path = File.join(sass_path, "..", "css")
load File.join(File.dirname(__FILE__), $ext_path, 'resources', 'themes')

如果可能的话,我不想ext-4.1.0用自定义主题文件污染我的文件夹。

4

1 回答 1

1

显然,此处文档中提到的“错误”适用于 4.1.0 版本,而不仅仅是 4.0.7。utils.rb按照描述更改文件修复了相对路径问题:

http://www.sencha.com/learn/theming/

于 2012-06-25T20:33:25.987 回答