Steffen
Well-known member
- Affected version
- 2.0.6
I think we all agree that nobody should be using Android 4.1–4.3 anymore and XenForo should not waste time fixing complicated issues in this crappy browser. On the other hand, I'd consider pagination to be an absolutely essential feature even for guests. Without this fix, the pagination (for example in threads) simply isn't displayed at all and it's impossible to navigate to the next page.
I therefore think that this simple workaround for browsers without "inline-flex" support should be applied. I've tested it on a Samsung Galaxy S2 with Android 4.1 (the information that this issue also exists on Android 4.3 comes from one of our readers).
I therefore think that this simple workaround for browsers without "inline-flex" support should be applied. I've tested it on a Samsung Galaxy S2 with Android 4.1 (the information that this issue also exists on Android 4.3 comes from one of our readers).
Diff:
diff --git a/src/addons/XF/_data/templates.xml b/src/addons/XF/_data/templates.xml
index c3186a5a9..916002a46 100644
--- a/src/addons/XF/_data/templates.xml
+++ b/src/addons/XF/_data/templates.xml
@@ -36534,6 +36534,7 @@ body.is-modalOpen
.pageNavSimple
{
+ display: inline;
display: inline-flex;
}
@@ -36687,6 +36688,7 @@ body.is-modalOpen
.pageNavSimple
{
+ display: inline;
display: inline-flex;
}
}