我无法更改GXT文本区域的默认字体系列。我尝试过使用StyleInjector和CSS。但它没有得到更新。你能帮我吗?
TextArea textArea = new TextArea();
textArea.setStyleName("gxtTextArea");
在CSS文件中,我给出了,
.gxtTextArea {
font-family: Arial !important;
/* color: red !important;
font-size: 24px !important;
font-style: bold !important;
font-weight: bold !important; */
}
答案 0 :(得分:2)
您也可以使用addStyleName而不是setStyleName。
TextArea textArea = new TextArea();
textArea.addStyleName("gxtTextArea");
在CSS方面,将其更改如下。
.gxtTextArea * {
font-family: Arial !important;
/* color: red !important;
font-size: 24px !important;
font-style: bold !important;
font-weight: bold !important; */
}