.my-transparent-button {
    background-color: transparent !important;
    background-image: none !important;
    border-color: transparent;
    border: none;

    color: #FFFFFF;
}



버튼에 적용하기 :


{
    xtype: 'button'
    ,text: 'my button'
    ,cls: 'my-transparent-button'
    ,baseCls: 'my-transparent-button'
    ,pressedCls: 'my-transparent-button-pressed'
}


my-transparent-button-pressed는 버튼이 눌렸을 때 적용되며 color 속성값을 다르게 해서 만들어준다.




* 테스트한 버전 : Sencha Touch 2.3.1

,