XF 2.2 How do I change the appearance of user mentions?

cwe

Well-known member
When someone mentions someone else in a post like @cwe , I would like to have the user mention displayed with a highlighted background color to make it stand out. I can't seem to figure out how to do this though. Any ideas?
 
Like this?

Firefox_Screenshot_2023-04-08T21-11-34.735Z.webp

Code:
.message-body .username {
  background: #b1dee8;
  padding: 3px 10px 3px 5px;
  border-radius: 5px;
}

Change background & padding to suit.
 
Back
Top Bottom