How to solve jQuery Mobile `ui-corner-all` Corners

I am currently using JQuery Mobile 1.4.0 for the PhoneGap application, but I have this problem with incorrectly forming angles (they are flat, not curved). When I use jQuery Mobile 1.3.2, it does not have this problem. I tried to downgrade / upgrade the Jquery.js library, but I still have to find a solution, I even created my own theme and still have no solution. Below is a screenshot of what I'm talking about.

Note: - All libraries are attached properly - It works fine in Firefox and Chrome - I am testing Android 4.2.1

JQuery Mobile Corners

Thanks, any help would be appreciated.

+4
1

.ui-corner-all, ...

.ui-corner-all{
     border-top-left-radius: .3125em;
     border-top-right-radius: .3125em;
     border-bottom-left-radius: .3125em;
     border-bottom-right-radius: .3125em;
}

: Galaxy S4 CSS3 border-radius?

0

Source: https://habr.com/ru/post/1534135/


All Articles