Control of HUD icons
Can anyone tell which one of these switches off the paperclip and comment icon?
Also, the print icon.
I am hoping to be able to switch off everything and just leave the paperclip, comment and print icons
if HUD then
html("
<style>
.sideeditor-buttons-left .button{display: none;
height: 0px;}
.popupeditor2-buttons-left .button{display: none;}
.stringeditor .stringeditor-button2{display: none;}
.nx-backplane .popupeditor.pane .nx-button-text.blue{display: none;}
.tab.tab-icon{display: none;}
.hud-menu-right{display: none;}
.HudLeftHeader_root .nav-item.head.FastClickContainer_root{display: none;}
.nav-item.head.HudLeftHeader_backButton.FastClickContainer_root{display: block;}
.HudContainer_body{display: none;}
.hud-menu-button.menu-icon.menu-icon-trash{display: none;}
.hud-menu-button.menu-icon.menu-icon-duplicate{display: none;}
.hud-menu-button.menu-icon.menu-icon-add{display: none;}
.hud-menu-group, .hud-menu-right{display:none;}
div.Container-dqubpQ.cupfZa{display:none}
.sc-feUZmu.NavigationButton-juiDdI.hGILJG.fLLJBd {display:none;}
.Divider-csajKZ.lhhtQ {display:none;}
.hud-menu-button.i-32-24.i-white.i-setting-tool.--ul-admin-button.admin-button{display:none;}
</style>
")
end
Thanks very much.
2 replies
-
The .tab.tab-icon{display: none;} line affects Attachments, Comments and History as a group. If you want to control them individually you will need to use these...
.tab-icon-container.i-18.i-light-grey.i-attachment - for Attachments
.tab-icon-container.i-18.i-light-grey.i-chat - for Comments
.tab-icon-container.i-18.i-light-grey.i-info - for History
The .hud-menu-group, .hud-menu-right{display:none;} line will hide Print, Trash, Copy, Add and Navigation icons. If you want to allow the Print icon and hide all the others then you can do this...
.hud-menu-button.menu-icon.menu-icon-trash{display: none;}
.hud-menu-button.menu-icon.menu-icon-duplicate{display: none;}
.hud-menu-button.menu-icon.menu-icon-add{display: none;}
.hud-menu-button.menu-nav{display:none;}
Content aside
- Status Answered
- 3 mths agoLast active
- 2Replies
- 57Views
-
2
Following