Black background in cordova application

-2

I'm having a problem, one of the pages of my application (for iPhone 4s this problem is on every page), has a black background behind all the content, when I do the iPhone bounce (touch dragging down then up, beyond the limit of the screen) on iPhone 4s this problem also appears between the divs and by GapDebug I can not see where it is set.

I'm using Cordova 6.3.1.

I've tried the following:

The Status Bar Style Light option in XCode,

<preference name="StatusBarStyle" value="lightcontent" />

<preference name="StatusBarOverlaysWebView" value="false" />

<preference name="StatusBarBackgroundColor" value="#c0c0c0" />

But nothing changes, follow the screenshots:

This is the default and correct screen on the iPhone 5+, the overscroll is in the correct color that is set by the body

On another page, also running on the iPhone 5+ when I give Bouce (overscroll) the black background appears

On the iPhone 4S the black background appears between the divs even on the home screen

And in Bounce (overscroll) too

The problem is that on the iPhone 5+ the black background in overscroll only happens on one page of the application, in others it is gray pattern ( link )

PS: I can not put more than 2 links in my post because my reputation is less than 10.

    
asked by anonymous 23.08.2016 / 20:15

1 answer

2

Resolution:

I was looking for some class that defined the black that appeared, black or # 000000, but in fact what I was defining somehow was a CSS class that was being inserted by another JavaScript library that I used. >

.app-content {
    background-color:#FFF;
}
    
24.08.2016 / 16:39