Hide logout notification and other options

Hello Helical Insight,

I am using helical insight version 5.0 GA. I would like to hide few things like logout option, notification option, file browser etc since I am embedding helical insight designer interface also.

Thank You,
Vema.

Hello Vema,

Find below the required code. Note that this will hide it from the frontend and for all the users. In a similar way you can inspect and do more things.

/* We have to put below code at the last in file 2.chunk.css file

/* Path is : in “…\hi\apache-tomcat-9\webapps\hi-ee\css\2.chunk.css”

.ant-badge-status { / This will remove bell icon from login page /
display: none
}

.ant-typography-ellipsis-single-line, span.ant-typography-ellipsis-single-line { / this will remove user from right corner of page /
<i>display:none !important
}
.ant-btn.ant-btn-block { / This will remove File browser button /
display:none
}
.ant-input-group .ant-input { / This will remove search icon from file broswer /
display:none
}
.ant-input-search>.ant-input-group>.ant-input-group-addon:last-child .ant-input-search-button { / This will remove search box ..just below file browser button /

display:none
}

Thank You,
Helical Insight.