Just after a page transition to another page, we can see a grey line (I assume that's the mobile container border?) appearing for a split second.
I tried to set the border color by doing the following but the grey line still appears in many cases. How may I remove it?
This problem occurs during testing on the Appery web tester and iPhone 4S, iOS7.1
code
#myPage_mobilecontainer {
background-color: white;
color: white;
border-color: white;
}
body, [data-role="page"] {
background: #FFFFFF !important;
color: white;
border-color: white;
}
/code