在Sencha中设计文本字段

时间:2012-04-25 21:01:46

标签: sencha-touch sencha-touch-2

我试图在Sencha Touch 2中覆盖文本域组件的默认样式。我尝试过单独的样式表,我也试过这个:

        xtype: 'textfield',
        name: 'name',
        label: 'Blah',
        disabled: true,
        style: 'color:#000 !important',
        value: 'blah blah',

如何将此字段的字体颜色更改为黑色?

1 个答案:

答案 0 :(得分:3)

要设置标签样式,请添加labelCls配置。

要设置文本字体的样式,请使用selector:

input.x-form-field[name="name"]{
  color: your_desired_color;
}