diff --git a/plugins/avatars/avatars.js b/plugins/avatars/avatars.js index 48e2f1eb3..5ddbf71c5 100644 --- a/plugins/avatars/avatars.js +++ b/plugins/avatars/avatars.js @@ -226,8 +226,8 @@ if ('MailMessageList' === e.detail.viewModelTemplateID) { isMobile = e.detail.isMobile; - document.getElementById('MailMessageList').content.querySelector('.messageCheckbox') - .append(Element.fromHTML(``)); + document.getElementById('MailMessageList').content.querySelectorAll('.messageCheckbox') + .forEach(el => el.append(Element.fromHTML(``))); } }); diff --git a/plugins/avatars/index.php b/plugins/avatars/index.php index 1839b08bf..c0ad97660 100644 --- a/plugins/avatars/index.php +++ b/plugins/avatars/index.php @@ -6,8 +6,8 @@ class AvatarsPlugin extends \RainLoop\Plugins\AbstractPlugin NAME = 'Avatars', AUTHOR = 'SnappyMail', URL = 'https://snappymail.eu/', - VERSION = '1.5', - RELEASE = '2022-12-15', + VERSION = '1.6', + RELEASE = '2022-12-23', REQUIRED = '2.23.0', CATEGORY = 'Contacts', LICENSE = 'MIT', diff --git a/plugins/avatars/style.css b/plugins/avatars/style.css index fc3ddbe55..d5d5a0025 100644 --- a/plugins/avatars/style.css +++ b/plugins/avatars/style.css @@ -20,5 +20,5 @@ .messageCheckbox .fromPic { margin: 0 0 -0.4em 0.4em; height: 1.5em; - max-width: 1.5em; + width: 1.5em; }