In my Mendix app, I have defined three css files that are loaded via the index.html: lib.css brand.css custom.css
However, when I open my hybrid app, only the following files are loaded: lib.css custom.css
As a solution, I included the three css reference links in the phonegap hybrid app, but this causes that five files are loaded in the following order: lib.css > brand.css > custom.css > lib.css > custom.css
This causes that some brand.css properties are overwritten by the second load of lib.css.
Does anyone know how I can properly load my three css files in the right order?