I added a javascript as webresource to the form and loaded a css file using the jscript
function load_css_file(filename){
var fileref = document.createElement("link")
fileref.setAttribute("rel", "stylesheet")
fileref.setAttribute("type", "text/css")
fileref.setAttribute("href", filename)
document.getElementsByTagName("head")[0].appendChild(fileref)
}
function myFormOnLoad(){
load_css_file('/WebResources/new_header.css');
}
This loads the css file and adds it to the head
In the css I am trying to modify the font color of the "Stages" in a business process
.processControlContainer span.stageNameContent {
color: yellow !important;
font-weight: bolder !important;
}
But since the business process stages is in a different iframe, these styles are not getting applied to that. How can I achieve this?
*This post is locked for comments
I have the same question (0)