将默认蓝色主题更改为绿色
Posted
技术标签:
【中文标题】将默认蓝色主题更改为绿色【英文标题】:Changing default blue theme to green 【发布时间】:2013-07-19 17:00:53 【问题描述】:我想将我的 Sencha Touch 应用程序的默认蓝色更改为绿色。我遵循的步骤如下:
gem update --system
gem install compass
compass create myfile
复制了一个.scss
文件并粘贴到touch-2.2.1/resources/sqss/
目录中。
在该文件中粘贴以下代码并将其命名为happy.css
:
$base-color: #709e3f;
@import 'sencha-touch/default/all';
@include sencha-panel;
@include sencha-buttons;
@include sencha-sheet;
@include sencha-tabs;
@include sencha-toolbar;
@include sencha-list;
@include sencha-layout;
@include sencha-loading-spinner;
compass compile happy.scss
在app.html
页面中替换了名称happy.scss
。
运行应用程序,我收到以下错误:
语法错误:未定义变量:"$font-family".\a 在第 2 行 /Applications/XAMPP/xamppfiles/htdocs/touch-2.2.1/resources/themes/stylesheets/sencha-touch/default/src/_Class.scss\a 从第 1 行 /Applications/XAMPP/xamppfiles/htdocs/touch-2.2.1/resources/themes/stylesheets/sencha-touch/default/src/_all.scss\a 从第 1 行 /Applications/XAMPP/xamppfiles/htdocs/touch-2.2.1/resources/themes/stylesheets/sencha-touch/default/_all.scss\a 从第 3 行 /Applications/XAMPP/xamppfiles/htdocs/touch-2.2.1/resources/sass/happy.scss\a\a 1: /Applications/XAMPP/xamppfiles/htdocs/touch-2.2.1/resources/sass/happy.scss
我该如何解决这个问题?
【问题讨论】:
【参考方案1】:添加以下行
@import 'sencha-touch/default';
在这行之前
@import 'sencha-touch/default/all';
也根据文档
There are a lot of changes from Sencha Touch 2.1 to 2.2,
The most important change to be aware of is the move away from using mixins
for each component
We found that using mixins for each component was quite slow when compiling your Sass,
so we decided to simply move to using @import to just include each component.
在 Touch 2.1 中,您的样式表如下所示:
@import 'sencha-touch/default/all';
@include sencha-panel;
@include sencha-buttons;
// and other components…
在 Touch 2.2 中,它看起来像这样:
@import 'sencha-touch/default';
@import 'sencha-touch/default/Panel';
@import 'sencha-touch/default/Button';
// and other components
【讨论】:
以上是关于将默认蓝色主题更改为绿色的主要内容,如果未能解决你的问题,请参考以下文章