Hide users in the user’s list for other users.
This CSS will allow logged in user as an admin to see all users and admins in the users’ list.
However, users will only see admins in the user’s list.
body:not(.moderator) #list-frame #list > div:not(.admin) {
display: none;
}