From: Marcel Werk Date: Mon, 22 Aug 2016 15:07:00 +0000 (+0200) Subject: Increased icon size in user panel X-Git-Tag: 3.0.0_Beta_1~576^2~11 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=2bd874fed7c172ddeabe6654619af018697c4dc0;p=GitHub%2FWoltLab%2FWCF.git Increased icon size in user panel --- diff --git a/wcfsetup/install/files/js/WCF.Moderation.js b/wcfsetup/install/files/js/WCF.Moderation.js index 115edabff2..f6af5bf894 100644 --- a/wcfsetup/install/files/js/WCF.Moderation.js +++ b/wcfsetup/install/files/js/WCF.Moderation.js @@ -642,7 +642,7 @@ WCF.User.Panel.Moderation = WCF.User.Panel.Abstract.extend({ _initDropdown: function() { var $dropdown = this._super(); - $('
  • ').appendTo($dropdown.getLinkList()); + $('
  • ').appendTo($dropdown.getLinkList()); return $dropdown; }, diff --git a/wcfsetup/install/files/js/WCF.User.js b/wcfsetup/install/files/js/WCF.User.js index a4a58585bf..de0d3eb394 100644 --- a/wcfsetup/install/files/js/WCF.User.js +++ b/wcfsetup/install/files/js/WCF.User.js @@ -284,7 +284,7 @@ WCF.User.Panel.Abstract = Class.extend({ if (this._options.enableMarkAsRead) { var $outstandingItems = this._dropdown.getItemList().children('.interactiveDropdownItemOutstanding'); if (this._markAllAsReadLink === null && $outstandingItems.length && this._options.markAllAsReadConfirmMessage) { - var $button = this._markAllAsReadLink = $('
  • ').appendTo(this._dropdown.getLinkList()); + var $button = this._markAllAsReadLink = $('
  • ').appendTo(this._dropdown.getLinkList()); $button.click((function(event) { this._dropdown.close(); @@ -473,7 +473,7 @@ WCF.User.Panel.Notification = WCF.User.Panel.Abstract.extend({ _initDropdown: function() { var $dropdown = this._super(); - $('
  • ').appendTo($dropdown.getLinkList()); + $('
  • ').appendTo($dropdown.getLinkList()); return $dropdown; },