I want to know is there any method to change the font color, font size and font family of field label of entire panel or entire project in extjs4.1.0.(for example i have some 10 js files with 10 form panels. I want to change fieldlabel style, without altering in each js. Is there any method to achieve this???) thanks
0
votes
1 Answers
2
votes
fieldlabel's css class is 'x-form-item-label'.
You can create your own css style to this class, by for example, including the following in the <head>
of your index.html:
<style type="text/css">
.x-form-item-label
color: red !important;
}
</style>
Just make sure it comes after the inclusion of the ext css file.