If you are like us, we do not let managers manage and update their own teams. This is usually done by user updates by a centralized admin team, or via a connector that automatically updates user profiles. We needed a way to prevent managers from removing users from their teams as this could affect things like reporting and assignments.
Here’s a quick CSS snippet you can use to hide that option:
/*Hide "Remove from My Team" in My Teams*/
a.action-can_remove_relation {
display: none !important;
}
You can add this to your “7.0 Custom CSS” block under Configure Branding and Look. This code can also be used on sub-domains only if you prefer to have a group with the option to remove and another without.
TIP: if you want to the code but make it ‘inactive’, you can “comment” it out by moving the “*/” to AFTER the last bracket…..it would look like this:
/*Hide "Remove from My Team" in My Teams
a.action-can_remove_relation {
display: none !important;
}*/