0

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

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

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

4

1 回答 1

3

要设置标签样式,请添加labelClsconfig.

要设置文本字段的样式,请使用选择器:

input.x-form-field[name="name"]{
  color: your_desired_color;
}
于 2012-04-26T14:55:29.113 回答