Customizing UI by Modifying CSS
You can customize the Web Report Studio and JDashboard UI by modifying CSS files, like changing the width, height, color, font, borders, and padding of the window elements in different states.
In the following example, we change the background color of the title bar for the panels in Web Report Studio to light green by adding the following CSS rule in the file wrptstudio.css and then running make.bat stored in <install_root>\public_html\bin
with the jsvm option in the command console to make the change take effect.
.studioPanel_title {
background-color: lightgreen;
background-image: none;
}