Sencha Touch 2.2图标不显示基本主题

时间:2013-06-20 11:08:53

标签: icons sencha-touch sencha-touch-2 sass sencha-touch-theming

我正在尝试创建自己的自定义主题,为此我导入了Base主题。

我正在尝试向这样的按钮添加图标:

{
    xtype: 'button',
    align : 'left',
    name : 'btnName',
    iconCls : 'team',
    iconMask: 'true'
}

图标未显示,但如果我使用的是默认主题。我已经将变量$ include-default-icons设置为true。

我的自定义按钮:

@mixin modus-button($color) {
    @include transition(all .25s ease);
    @include border-radius(6px);
    margin-bottom: 15px;
    font-size: 15px;
    background: $color;
    border: none;
    color: white;
    text-decoration: none;

    .x-button-label {
        padding: 10px 0;
    }

    &.x-button-pressing {
        background: darken($color, 10);
    } 

    // Default icon style
    .x-button-icon {
        width: 1.5em;
        height: 1.5em;

        &:before {
            font-size: 1.6em;
            line-height: 1em;
        }
    }
}

我应该添加哪些基本主题的显示图标?

1 个答案:

答案 0 :(得分:1)

尝试包含图标

@include icon('team');

另请参阅以下有用的链接

Several pictos icons in 2.1 not available in 2.2

Adding Custom Font Icons to Sencha Touch 2.2