Did you ever get anyone to respond to this? I have the same request - I want to hide this. Thank you!
This should work, note it is universal so all users don’t see it, also it is based on the aria tag which could change over time:
li:has(saria-label="Manage Team Requests"]) {
display: none;
}
We are also currently looking to hide this option. I’m always cautious when using CSS to hide a functionality because that can always stop working or backfire. CSS is more for optical and not functional design… But sometimes there is no other options…
This should work, note it is universal so all users don’t see it, also it is based on the aria tag which could change over time:
li:has(saria-label="Manage Team Requests"]) {
display: none;
}
Thanks for the suggestion! It is right that it can change over time, and if you are using multiple languages, this would also be different. I’m trying to target the icon instead and limit the scope to Power Users. Here is the CSS that we are testing right now:
div#doc-layout.doc-layout-internal-power-user div.button-wrap:has(i.zmdi-accounts-alt){
display: none !important;
}
It looks like it’s working, but this might impact other parts of the platform. I haven’t found a selector to limit the scope to the User Management page. Any ideas?