在Eclipse RAP中,大多数组件都可以通过CSS进行样式化,例如:
Combo:hover {
background-color: #DDDDDD;
}
Combo-Button:hover {
background-color: #DDDDDD;
}
如何设置Section
和ScrolledForm
组件的样式?它们似乎与Shell-Titlebar
相关联,但如果我想要一个不同的Shell
标题栏和Section
标题呢?
此CSS创建以下输出:
Shell-Titlebar {
background-color: #ff0000;
}
操纵字体颜色的样式如下(是background-color
):
List-Item {
/** this is for Section and Form heading font color */
background-color: #4A4A4A;
}