Fixed user mention wrapping behavior
authorAlexander Ebert <ebert@woltlab.com>
Fri, 9 Jun 2017 15:09:08 +0000 (17:09 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Fri, 9 Jun 2017 15:09:08 +0000 (17:09 +0200)
wcfsetup/install/files/style/bbcode/userMention.scss

index 3f005c4d34f9e86b7224793f0ba4e78815779d52..236c8b1961343188b14ee1acc6d61c506645f761 100644 (file)
@@ -5,5 +5,8 @@
        
        &::before {
                content: '@';
+               /* avoids breaks between the '@' and the username, but still allows
+                  wrapping inside the username itself */
+               display: inline-block;
        }
 }