diff --git a/app/css/app.css b/app/css/app.css index 5f9ea882..15570037 100644 --- a/app/css/app.css +++ b/app/css/app.css @@ -897,7 +897,8 @@ a.im_dialog:hover .im_dialog_date { }*/ .im_message_unread_split { - background: #E9EBED; + background: #f4f4f4; + color: #777; text-align: center; padding: 4px 10px; margin: 10px 0; diff --git a/app/js/services.js b/app/js/services.js index 5a84dbf1..224a9591 100644 --- a/app/js/services.js +++ b/app/js/services.js @@ -805,7 +805,7 @@ angular.module('myApp.services', []) var unreadLimit = false; if (!limit && !maxID) { var foundDialog = getDialogByPeerID(peerID); - if (foundDialog && foundDialog[0] && foundDialog[0].unread_count > 0) { + if (foundDialog && foundDialog[0] && foundDialog[0].unread_count > 1) { unreadLimit = foundDialog[0].unread_count; limit = Math.max(20, unreadLimit + 2); }