https://bugzilla.wikimedia.org/show_bug.cgi?id=48544
Jon <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] Component|MobileFrontend |Skin and page rendering Product|MediaWiki extensions |MediaWiki --- Comment #2 from Jon <[email protected]> --- Looking closer this is due to a couple of spans with inline styles set to: white-space: nowrap These should be moved to classes and redesigned with mobile in mind using media querres . Try the same page on desktop [1] with the following css rule and note the table spills out of the container: #bodyContent { width: 320px; border: solid 1px #F00; } This is therefore not a MobileFrontend bug. [1] https://en.wikipedia.org/wiki/Special:Contributions?mobileaction=toggle_view_desktop The offending HTML is as follows: <td><select class="namespaceselector" id="namespace" name="namespace"><option value="" selected="">all</option><option value="0">(Article)</option><option value="1">Talk</option><option value="2">User</option><option value="3">User talk</option><option value="4">Wikipedia</option><option value="5">Wikipedia talk</option><option value="6">File</option><option value="7">File talk</option><option value="8">MediaWiki</option><option value="9">MediaWiki talk</option><option value="10">Template</option><option value="11">Template talk</option><option value="12">Help</option><option value="13">Help talk</option><option value="14">Category</option><option value="15">Category talk</option><option value="100">Portal</option><option value="101">Portal talk</option><option value="108">Book</option><option value="109">Book talk</option><option value="446">Education Program</option><option value="447">Education Program talk</option><option value="710">TimedText</option><option value="711">TimedText talk</option><option value="828">Module</option><option value="829">Module talk</option></select> <span style="white-space: nowrap"><input name="nsInvert" type="checkbox" value="1" id="nsInvert" title="Check this box to hide changes to pages within the selected namespace (and the associated namespace if checked)" class="mw-input"> <label for="nsInvert" class="mw-input" title="Check this box to hide changes to pages within the selected namespace (and the associated namespace if checked)">Invert selection</label> </span><span style="white-space: nowrap"><input name="associated" type="checkbox" value="1" id="associated" title="Check this box to also include the talk or subject namespace associated with the selected namespace" class="mw-input"> <label for="associated" class="mw-input" title="Check this box to also include the talk or subject namespace associated with the selected namespace">Associated namespace</label> </span></td> -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
