删除面板中的白色背景

时间:2012-07-14 10:29:29

标签: extjs4 extjs4.1

我如何摆脱白色背景。这是图像,我需要摆脱白色背景,最后它应该显示blue colour的默认panel

enter image description here

3 个答案:

答案 0 :(得分:9)

对我有用的只是:

bodyStyle : 'background:none', // Removes the default white background

答案 1 :(得分:2)

尝试在面板的配置中添加plain: true

答案 2 :(得分:0)

添加配置

 bodyCls:'your-css'

`cls:'your-css'`

在default.html或您的特定样式表中添加css样式。

.your-css 
{
  background-color:#4169E1 !important;
}