4

我正在开发一个使用 sencha touch 2 开发的移动网站。我使用 sencha cmd v3 来生成生产版本。当我测试生产版本时,我发现我的自定义 css 文件包含在文件夹结构中,但自定义样式并未应用于 UI 元素。

请看,我没有在这个应用程序中使用 SASS/COMPASS。关于哪里出了问题或我错过了什么的任何想法?在创建生产版本时,我是否必须以不同的方式处理自定义 css 文件并做一些特别的事情?在创建生产版本时,我是否需要在 app.json 中包含这些自定义 css 文件的引用?请帮忙。

谢谢

4

1 回答 1

10

您只需在app.json文件中提供参考。app.css在文件后添加

/**
         * List of all CSS assets in the right inclusion order.
         * Each item is an object with the following format:
         *      {
         *          "path": "path/to/item.css" // Relative path to this app.json file
         *          "update": "delta"          // (Optional)
         *                                     // - If not specified, this file will only be loaded once, and
         *                                     //  -cached inside localStorage until this value is changed to either one below
         *                                     //  - "delta" to enable over-the-air delta update for this file
         *                                     //  - "full" means full update will be made when this file changes
         *
         *      }
         */
于 2013-01-31T05:03:10.183 回答