Forum Discussion
LARROQUEFREDERI
2 years agoCommunity Member
Text color "Ressource tab"
Hi there,
I need to change the default color of the 'Resources' tab (only this one) of the Storyline 360 modern player.
Do you know if it's possible (with Java Script for example)?
Thanks !
...
Jürgen_Schoene_
2 years agoCommunity Member
with this script you can modify the background and the text color of the resourse panel
if( window.cssPatchResourcePanel !== "done") {
style = document.createElement('style');
style.textContent = `
#resources-panel {
background-color: red !important;
border-color: white !important;
}
#resources-panel .panel-arrow-path {
background-color: red !important;
border-color: white !important;
}
#resources-panel .cs-listitem:hover {
border-color: white !important;
}
#resources-panel .file-name {
color: blue;
}
`
document.body.appendChild(style);
window.cssPatchResourcePanel = "done";
console.log("Resourse Panel patched");
}
you could add a javascript trigger in the Slide Master
result:
https://360.articulate.com/review/content/e6f0aa6a-6c24-4177-a146-0be293a5ac52/review