From e18f224758ed93bed5725d93a002640c5629fe5a Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Mon, 17 Sep 2012 15:10:12 +0000 Subject: [PATCH] #5040 Improve scrolling experience in Web UI on iPad --- web/style/transmission/common.css | 4 +++- web/style/transmission/common.scss | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/web/style/transmission/common.css b/web/style/transmission/common.css index 2ee9587cd..e59423ce3 100644 --- a/web/style/transmission/common.css +++ b/web/style/transmission/common.css @@ -156,7 +156,8 @@ div#torrent_container { left: 0px; padding: 0px; margin: 0px; - overflow: auto; } + overflow: auto; + -webkit-overflow-scrolling: touch; } ul.torrent_list { width: 100%; @@ -350,6 +351,7 @@ ul.torrent_list { ***/ div#torrent_inspector { overflow: auto; + -webkit-overflow-scrolling: touch; text-align: left; padding: 15px; top: 68px; diff --git a/web/style/transmission/common.scss b/web/style/transmission/common.scss index 7aaacbc22..fc91530f9 100644 --- a/web/style/transmission/common.scss +++ b/web/style/transmission/common.scss @@ -265,6 +265,7 @@ div#torrent_container { padding: 0px; margin: 0px; overflow: auto; + -webkit-overflow-scrolling: touch; } ul.torrent_list @@ -477,6 +478,7 @@ $inspector-width: 570px; div#torrent_inspector { overflow: auto; + -webkit-overflow-scrolling: touch; text-align: left; padding: 15px; top: $torrent-container-top;