So did you actually have a look WHY it didn’t work? You haven’t made the slightest effort to help yourself. Why should anyone help you?
I had a look and I am clueless and useless with CSS but it only took me 5 minutes to figure it out.
They removed this at some point:
data-qa-id=“ToolBoxAction-phone” data-toolbox=“1”
So this code will never find the css
button[data-toolbox="1"][data-qa-id="ToolBoxAction-phone"] {
display: none!important;
}
So with a quick browser inspector we can see it now says:
<button type=“button” title=“Voice call Some User”
So all you need to do is find some CSS that searches for “Title” and wording that starts with “Voice call”
Second link on a search reveals this:
And so you can do something vaguely like this:
button[title^=“Voice call”]{
display: none !important;
}
Probably needs refinement but seems to work.
A lesson in open source is to start by trying to help yourself.
I was in two minds whether to actually post a solution because I don’t have much time for people who just want answers on a plate and make no attempt to better themselves or learn.
If you had posted your effort at some CSS you would increase your chances of someone helping.
I happen to be in a generous mood today so posted it, mainly for others. It is open source. My way of giving back to a community.
It took me longer to upgrade a test server to check this. It took me longer to type this post.
With minimum effort you could have done this yourself.
My suggestion is spend some time reading, and helping others in return.
If you have refinements please post them accordingly.