Merge branch '3.1' into 5.2
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / style / bbcode / groupMention.scss
1 .groupMention {
2 background-color: $wcfSidebarBackground;
3 border-radius: 2px;
4 color: $wcfSidebarLink;
5 padding: 1px 5px;
6
7 &::before {
8 content: '@';
9 /* Avoids breaks between the '@' and the group name, but still allows
10 wrapping inside the name itself */
11 display: inline-block;
12 }
13
14 &:hover {
15 color: $wcfSidebarLinkActive;
16 }
17 }