1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-03 10:15:45 +00:00

#5040 Improve scrolling experience in Web UI on iPad

This commit is contained in:
Mitchell Livingston 2012-09-17 15:10:12 +00:00
parent 4cce91e006
commit e18f224758
2 changed files with 5 additions and 1 deletions

View file

@ -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;

View file

@ -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;