From 2bd874fed7c172ddeabe6654619af018697c4dc0 Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Mon, 22 Aug 2016 17:07:00 +0200 Subject: [PATCH] Increased icon size in user panel --- wcfsetup/install/files/js/WCF.Moderation.js | 2 +- wcfsetup/install/files/js/WCF.User.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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; }, -- 2.20.1