JasperReports Server:显示报告的屏幕的背景颜色

JasperReports Server: Background color for the screen on which the reports are displayed

如何更改在 JasperReports Server 上显示报告的整个屏幕 (window) 的背景颜色,而不是更改报告的背景颜色使用 JasperReports?

要更改 Entire Window 的颜色,您可以像这样编辑 jasperserver/themes 中的 CSS 文件

#reportViewFrame .content .body{
        background:#f6f6f6; //any color you want
}

.jrPage > tbody {
    background: none repeat scroll 0 0 #f6f6f6; // any color you want
}