Change color of Sencha Touch Ext.TabPanel

前端 未结 3 1100
一生所求
一生所求 2021-02-10 09:30
new Ext.TabPanel({
            fullscreen: true,
            cardSwitchAnimation: \'slide\',
            ui: \'dark\',
            items: [home, about]
        });
         


        
3条回答
  •  梦毁少年i
    2021-02-10 10:10

    Give your tabPanel or its children a cls attribute. This gives the html tag a class, so you can use it for styling in your CSS.

    Obviously after this, you would style it using something like:

    background-image: url(...);
    background-color: pink;
    

提交回复
热议问题