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;
}*/Ā



