0

我想用我创建的图标填充一个按钮,但无论我尝试过什么,似乎都将图标一半截断并放在左边,或者根本不显示。我一直在尝试 CSS 和图标、iconcls、cls 按钮选项的不同组合。

我正在关注 Ext 3 按钮示例页面,但这似乎对我没有显示任何内容......

This code is an item inside my form panel (I try to replicate this with different buttons in the panel)
{
                    xtype: 'container',
                    layout: {
                        type: 'table',
                        columns: 2,
                        tableAttrs: {
                            cellspacing: 5
                        }
                    },                  
//                  padding: 5,
                    pack: 'center',
                    align: 'middle',
                    items: [{
                        xtype: 'button',
                        width: 40,
//                      scale: 'medium',
                        ref: '../drawToolsBtn',
                        tooltip: 'Drawing Tools',
                        icon: 'img/draw.png',
                        iconAlign: 'top',
                        baseCls: 'x-plain',
//                      iconCls: 'drawBtn',
                        enableToggle: true,
//                      padding: 3,
                        toggleHandler: function(btn, state)
                        {
                            this.showDrawToolsWin(state);
                        },
                        scope: this
                    },{
                        xtype: 'label',
//                      columnWidth: 1, // remainder of container
                        padding: 3,
                        text: 'Click button to open Drawing Tools Menu'
                    }]
                }


CSS
--------------------
.drawBtn{
    background: url(../img/draw.png) !important;


}

感谢您的任何帮助!

4

1 回答 1

0
.drawBtn{
    background-image: url(../img/draw.png) !important;
 }
于 2012-10-05T03:54:10.893 回答