diff --git a/app/css/app.css b/app/css/app.css index e09f737e..bba9a587 100644 --- a/app/css/app.css +++ b/app/css/app.css @@ -1129,6 +1129,10 @@ a.im_dialog_selected .im_dialog_date { white-space: nowrap; text-overflow: ellipsis; } +.im_dialog_message { + color: #808080; +} + /* IM history */ .im_history_col { diff --git a/app/vendor/jquery.nanoscroller/nanoscroller.js b/app/vendor/jquery.nanoscroller/nanoscroller.js index 77429b62..b0240a25 100644 --- a/app/vendor/jquery.nanoscroller/nanoscroller.js +++ b/app/vendor/jquery.nanoscroller/nanoscroller.js @@ -342,7 +342,7 @@ this.$content.attr('tabindex', this.options.tabIndex || 0); this.content = this.$content[0]; this.previousPosition = 0; - if (this.options.iOSNativeScrolling && (this.el.style.WebkitOverflowScrolling != null)) { + if (this.options.iOSNativeScrolling && (this.el.style.WebkitOverflowScrolling != null || navigator.userAgent.match(/mobi.+Gecko/i))) { this.nativeScrolling(); } else { this.generate();