I have a requirement to provide custom L&F on components, and am having difficulties locating the CSS styles applied to the components.
I know where the skin_style.css file is located and used, but some components don't seem to have their styles sourced from here. Specifically, I need to change the styling of the ColumnTree widget -
- Change the Header background and font colors.
- Change the record row background and font colors.
Currently, for example, the record rows use alternating blue and white background colors. I searched in the instance APIs for ColumnTree, and I see nothing for style listed.
I also need to change the styling of the FacetChart widget. For this, I see a method:
/**
* Default styleName for the chart.
*
* @param styleName styleName Default value is "scChart"
*/
public void setStyleName(String styleName) {
setAttribute("styleName", styleName, true);
}
However, I do not see any named style in the theme CSS like this. I would also expect to see more style settings, for things like the header, the alternating colors, etc.
Can some guidance be provided on these specific widgets, and in general, for how to completely customize the styling based on the default styling?
Thanks,
Don P.
I know where the skin_style.css file is located and used, but some components don't seem to have their styles sourced from here. Specifically, I need to change the styling of the ColumnTree widget -
- Change the Header background and font colors.
- Change the record row background and font colors.
Currently, for example, the record rows use alternating blue and white background colors. I searched in the instance APIs for ColumnTree, and I see nothing for style listed.
I also need to change the styling of the FacetChart widget. For this, I see a method:
/**
* Default styleName for the chart.
*
* @param styleName styleName Default value is "scChart"
*/
public void setStyleName(String styleName) {
setAttribute("styleName", styleName, true);
}
However, I do not see any named style in the theme CSS like this. I would also expect to see more style settings, for things like the header, the alternating colors, etc.
Can some guidance be provided on these specific widgets, and in general, for how to completely customize the styling based on the default styling?
Thanks,
Don P.
Comment