RTC 3.0.1 Home icon customization ?
2 answers
Can some one help me to figure out, how to customize RTC 3.0.1 "HOME" icon & I want to remove "Build" & Source Control" from CCM.
Thanks!
Ashwini
You can upload a theme for the CCM application to customise this. E.g. https://localhost:9443/ccm/admin#action=com.ibm.team.repository.admin.configureTheming
You can then include a CSS rule in the theme to hide the menu item (case given is source code menu).
#jazz_ui_MenuPopup_4 {
visibility: hidden;
width: 0px;
margin: 0px;
padding: 0px;
}
Can some one help me to figure out, how to customize RTC 3.0.1 "HOME" icon & I want to remove "Build" & Source Control" from CCM.
Thanks!
Ashwini
You can upload a theme for the CCM application to customise this. E.g. https://localhost:9443/ccm/admin#action=com.ibm.team.repository.admin.configureTheming
You can then include a CSS rule in the theme to hide the menu item (case given is source code menu).
#jazz_ui_MenuPopup_4 {
visibility: hidden;
width: 0px;
margin: 0px;
padding: 0px;
}
Thanks for the response Ovinn!
I created CSS file and uploaded in the RTC, but menu option is still appearing. I used below mention code in CSS file.
<style>
jazz_ui_MenuPopup_4 {
visibility: hidden;
width: 0px;
margin: 0px;
padding: 0px;
}
</style>
Please suggest me, if mistake in above code.