Reports getting bleached out

Hi,

I am using helical insight version 5.0 GT 830 RC2. I want to give entire dashboard a background color. There is a property of background color with ability to define transparency by right clicking on dashboard empty area. When I am doing that, the reports are getting bleached out.

image

Thank You,
Snow.

Hi,

Right click on dashboard empty area, go to Advance->CSS. Enable it and put the below CSS Code. So instead of specifying the background color and transparency, you can specify it here. Like in this code it is specified as background:rgba(255, 0, 0, 0.2);

#hi-grid:after{
    content:'';
    background:rgba(255, 0, 0, 0.2);
    width:100%;
    height:100%;
  position:absolute;
    top:0;
    left:0;
}
#hi-grid .hi-parameter-container{
  z-index:1;
  position: relative;
}

image

Thank You,
Helical Insight.