Fixed missing margin
authorMarcel Werk <burntime@woltlab.com>
Wed, 25 May 2016 21:00:30 +0000 (23:00 +0200)
committerMarcel Werk <burntime@woltlab.com>
Wed, 25 May 2016 21:00:36 +0000 (23:00 +0200)
wcfsetup/install/files/acp/js/WCF.ACP.js

index 2acd9c03b0292f15412b09fc9d60e07062c4a660..87c1fb11633ff5b84a35c9166890376fd1f3bbc2 100644 (file)
@@ -2149,7 +2149,7 @@ WCF.ACP.User.Group.Copy = Class.extend({
         * Handles clicking on a 'copy user group' button.
         */
        _click: function() {
-               var $template = $('<div />');
+               var $template = $('<div class="section" />');
                $template.append($('<dl class="wide"><dt /><dd><label><input type="checkbox" id="copyMembers" value="1" /> ' + WCF.Language.get('wcf.acp.group.copy.copyMembers') + '</label><small>' + WCF.Language.get('wcf.acp.group.copy.copyMembers.description') + '</small></dd></dl>'));
                $template.append($('<dl class="wide"><dt /><dd><label><input type="checkbox" id="copyUserGroupOptions" value="1" /> ' + WCF.Language.get('wcf.acp.group.copy.copyUserGroupOptions') + '</label><small>' + WCF.Language.get('wcf.acp.group.copy.copyUserGroupOptions.description') + '</small></dd></dl>'));
                $template.append($('<dl class="wide"><dt /><dd><label><input type="checkbox" id="copyACLOptions" value="1" /> ' + WCF.Language.get('wcf.acp.group.copy.copyACLOptions') + '</label><small>' + WCF.Language.get('wcf.acp.group.copy.copyACLOptions.description') + '</small></dd></dl>'));