Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixes for Ice Cream Sandwich android 4.*
* load app.css last so it can override rules
  • Loading branch information
jdlrobson authored and yuvipanda committed Apr 19, 2012
1 parent 39ed7e9 commit ede4f14
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions assets/www/app.css
Expand Up @@ -684,3 +684,13 @@ body[dir=rtl] #settingsList .item select {
.disabled {
opacity: 0.1;
}

.android .scroller > * {
-webkit-transform: none; /* in ICS this causes lots of problems with scrolling */
}

/* in ICS it is not possible to scroll vertically across tables so undo rule in beta_common.css */
.android table {
overflow-x: hidden;
-webkit-overflow-scrolling: none;
}
2 changes: 1 addition & 1 deletion assets/www/index.html
Expand Up @@ -46,10 +46,10 @@

<link rel="stylesheet" href="leaflet/leaflet.css" />

<link rel="stylesheet" href="app.css" />
<link rel="stylesheet" href="MobileFrontend/stylesheets/beta_common.css" />
<link rel="stylesheet" href="MobileFrontend/stylesheets/hacks.css" />
<link rel="stylesheet" href="MobileFrontend/stylesheets/sections.css" />
<link rel="stylesheet" href="app.css" />

</head>

Expand Down

0 comments on commit ede4f14

Please sign in to comment.