我使用 Sencha ExtJS 和compass compile
andsencha 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
用自定义主题文件污染我的文件夹。