Gray line at bottom right of header

Hello Team,

I am currently using open source BI Helical Insight version 5.2 enterprise edition. While creating dashboards, I’ve noticed that a small gray line appears at the bottom right under the header of each report/component added to the dashboard. Image for reference.

Could you please assist me in removing this line? You can refer to the image below for clarification.

image

Thank You,
Netta.

Hello ,

Yes , the gray line under every component/report header can be remove using below CSS :

.ant-space.ant-space-horizontal.ant-space-align-baseline.toolbar-container{ 
display: none !important; 
}

To apply this:

Right-click on an empty area of the dashboard. Go to the CSS section.

Paste the above CSS code.

Click the Apply button.

This will remove the gray line beneath the headers. You can even append componentID also so that this code only applies to that specific component only.

#component-id.ant-space.ant-space-horizontal.ant-space-align-baseline.toolbar-container{ 
display: none !important; 
}

Thank You,
Helical Insight.