我试图在Sencha Touch 2中覆盖文本域组件的默认样式。我尝试过单独的样式表,我也试过这个:
xtype: 'textfield',
name: 'name',
label: 'Blah',
disabled: true,
style: 'color:#000 !important',
value: 'blah blah',
如何将此字段的字体颜色更改为黑色?
答案 0 :(得分:3)
要设置标签样式,请添加labelCls
配置。
要设置文本字体的样式,请使用selector:
input.x-form-field[name="name"]{
color: your_desired_color;
}