我在ExtJS中有一个日期字段。
{
xtype: 'datefield',
anchor: '100%',
itemId: 'Date',
emptyText: 'mm/dd/yyyy',
name: 'date',
fieldLabel: 'From Date',
labelStyle: 'font-family:Arial;font-style:normal;font-size:12px;text-align:right;',
margin: "10 5 5 5"
}
弹出的日历背景和日期写在黑色上。有什么办法可以将字体颜色/背景颜色改为白色吗? 我浏览了Senchs文档,但没有找到任何有用的东西。
谢谢
答案 0 :(得分:0)
您可以使用CSS:
.x-datepicker-inner {
background-color: #bada55 !important;
}
.x-datepicker-date {
color: red !important;
}