Index: branches/wmf/1.18wmf1/extensions/MobileFrontend/stylesheets/common.css |
— | — | @@ -109,6 +109,14 @@ |
110 | 110 | height: 1.4em; |
111 | 111 | } |
112 | 112 | |
| 113 | +#footer-info ul, li { |
| 114 | + list-style: none; |
| 115 | + list-style-image: none; |
| 116 | + list-style-type: none; |
| 117 | + margin: 0; |
| 118 | + padding: 0; |
| 119 | +} |
| 120 | + |
113 | 121 | .divclearable { |
114 | 122 | border: 1px solid #888; |
115 | 123 | display: -moz-inline-stack; |
Index: branches/wmf/1.18wmf1/extensions/MobileFrontend/MobileFrontend.php |
— | — | @@ -310,7 +310,7 @@ |
311 | 311 | $skin = $wgUser->getSkin(); |
312 | 312 | $copyright = $skin->getCopyright(); |
313 | 313 | if ( stristr( $copyright, '<li class="noprint">' ) !== false ) { |
314 | | - $copyright = '<ul><li>' . $copyright . '</li></ul>'; |
| 314 | + $copyright = '<ul id="footer-info"><li>' . $copyright . '</li></ul>'; |
315 | 315 | } |
316 | 316 | |
317 | 317 | // Need to stash the results of the "wfMsg" call before the Output Buffering handler |