From: Marcel Werk Date: Thu, 22 Sep 2016 10:23:35 +0000 (+0200) Subject: Increased icon size (banned user) X-Git-Tag: 3.0.0_Beta_1~36 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=69acc067d3fb67cc671933071038623ccb85c86c;p=GitHub%2FWoltLab%2FWCF.git Increased icon size (banned user) --- diff --git a/com.woltlab.wcf/templates/user.tpl b/com.woltlab.wcf/templates/user.tpl index d103da7fbd..0d510b77d8 100644 --- a/com.woltlab.wcf/templates/user.tpl +++ b/com.woltlab.wcf/templates/user.tpl @@ -150,7 +150,7 @@

{$user->username} - {if $user->banned}{/if} + {if $user->banned}{/if} {if MODULE_USER_RANK} {if $user->getUserTitle()} {$user->getUserTitle()} diff --git a/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/User/Editor.js b/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/User/Editor.js index 2f1e576dc0..e4c03db0b1 100644 --- a/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/User/Editor.js +++ b/wcfsetup/install/files/js/WoltLabSuite/Core/Ui/User/Editor.js @@ -127,7 +127,7 @@ define(['Ajax', 'Language', 'StringUtil', 'Dom/Util', 'Ui/Dialog', 'Ui/Notificat var banIcon = elBySel('.jsUserBanned', contentTitle); if (data.actionName === 'ban') { banIcon = elCreate('span'); - banIcon.className = 'icon icon16 fa-lock jsUserBanned jsTooltip'; + banIcon.className = 'icon icon24 fa-lock jsUserBanned jsTooltip'; banIcon.title = Language.get('wcf.user.banned'); contentTitle.appendChild(banIcon); }