Under Space details > Space Operations, we have a field called "Administrators". When you mouse-over the names of the admins, it shows a tooltip with the username, which is not liked by our security team. Is it possible to obscure the "Administrators" field through the CSS?
You could add some CSS to the site to hide this in all spaces.
I believe the following will work.
.view-space-details #spaceAdmins {display:none !important;}
@Brant Schroeder Thanks for the suggestion. I actually implemented this by blocking the "Browse" menu altogether in Custom HTML by adding the following script to the "At the end of the HEAD":
<script>
AJS.toInit(function(){
if (AJS.params.remoteUser == ''){
AJS.$("#space-tools-menu-trigger").hide();
}
});
</script>
By doing this, I didn't have to implement security individually for every field in every space.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.