2

独自のカスタム テーマを作成しようとしています。このために、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;
        }
    }
}

基本テーマのアイコンを表示するには何を追加すればよいですか?

4

1 に答える 1