Merge pull request #4582 from cmgustavo/bug/scrolling-proposal-desktop2

Fix scrolling when there are many txp s on OSX
This commit is contained in:
Gustavo Maximiliano Cortez 2016-07-13 13:01:51 -03:00 committed by GitHub
commit fccd645f54
6 changed files with 32 additions and 30 deletions

View file

@ -50,6 +50,9 @@ input {
body {
overflow: hidden;
-ms-content-zooming: none;
/* removes 300ms in IE */
-ms-touch-action: manipulation; /* IE10 */
touch-action: manipulation; /* IE11+ */
}
/* Fix IE 10 */
@ -114,10 +117,7 @@ _:-ms-fullscreen, :root .main {
min-zoom:1;
}
body, html {
-ms-overflow-style: none !important;
.disable-user-behavior {
-ms-touch-action: cross-slide-y !important;
touch-action: cross-slide-y !important;
}
/* removes 300ms in IE */
-ms-touch-action: manipulation; /* IE10 /
touch-action: manipulation; /* IE11+ */

View file

@ -5,7 +5,7 @@ angular.module('copayApp.services').factory('fingerprintService', function($log,
var _isAvailable = false;
if (platformInfo.isCordova) {
if (platformInfo.isCordova && !platformInfo.isWP) {
window.plugins.touchid = window.plugins.touchid || {};
window.plugins.touchid.isAvailable(
function(msg) {

View file

@ -753,6 +753,10 @@ ul.manage li {
padding-top: 60px;
}
.p60b {
padding-bottom: 60px;
}
.m60t {
margin-top: 60px;
}