Hello, there is a problem in displaying the infoboxes on mobile and android application in many languages. I think it's because of some minerva skin styles exactly in :
.content table.infobox td { padding: 7px 10px }
@media screen and (max-width: 720px) {.content table { display: block}}`
in Arabic wikipedia we resolved the problem on Mobile browsers by style( table.infobox td{padding: 2px } and (.infobox table { display: table}) but no result appeared on Android application .
This problem appeared also in other languages exactly in sequence sections:
- Go to https://en.wikipedia.org/api/rest_v1/page/mobile-html/2019_Mutua_Madrid_Open
- Resize the window for under 720px
- Notice in the years Sequence section that the year 2021 does not take its place. on mobile and android application
- This is because of ( .content table { display: block}) ..display should take the value table not block
This is also noted in :
- French wikipedia : Barack Obama article
- Spanish wikipedia : Liga_Concacaf_2019 article
- Dutch Wikipedia : Eredivisie 2019/20 (mannenvoetbal) article
- Portuguese Wikipedia : Copa do Mundo FIFA de 2018 article
This is Screenshot of Barack Obama article on Arabic Wikipedia in mobile browser and android application: :
I suggest changing the value of the two properties in the Minerva skin for resolve the problem globally (padding to 2px and display to table) thank you.