Index: trunk/extensions/MobileFrontend/javascripts/beta_opensearch.js |
— | — | @@ -48,7 +48,7 @@ |
49 | 49 | results.style.left = 0 + pixels; |
50 | 50 | results.style.top = ( sq.offsetTop + sq.offsetHeight ) + pixels; |
51 | 51 | results.style.width = document.body.clientWidth + pixels; |
52 | | - results.style.height = '100%'; |
| 52 | + results.style.minHeight = '100%'; |
53 | 53 | results.style.borderTop = 'solid 1px #A6A6A6'; |
54 | 54 | results.style.backgroundColor = '#E6E6E6'; |
55 | 55 | results.style.paddingTop = 5 + pixels; |
Index: trunk/extensions/MobileFrontend/stylesheets/beta_common.css |
— | — | @@ -1,3 +1,13 @@ |
| 2 | +html { |
| 3 | + min-height: 100%; |
| 4 | +} |
| 5 | + |
| 6 | +body { |
| 7 | + margin: 0px; |
| 8 | + padding: 0px; |
| 9 | + min-height: 100%; |
| 10 | +} |
| 11 | + |
2 | 12 | .clearlink { |
3 | 13 | background: url(images/close-button.png) no-repeat scroll 0 0 transparent; |
4 | 14 | background-position: center center; |
Index: trunk/extensions/MobileFrontend/views/layout/_search_webkit.html.php |
— | — | @@ -21,6 +21,7 @@ |
22 | 22 | $logoOnClick = ( self::$device['supports_javascript'] ) ? 'onclick="javascript:logoClick();"' : ''; |
23 | 23 | |
24 | 24 | $searchWebkitHtml = <<<EOD |
| 25 | + {$openSearchResults} |
25 | 26 | <div id='header'> |
26 | 27 | <div id='searchbox' {$logoDisplayNone}> |
27 | 28 | <img width="35" height="22" alt='Logo' id='logo' src='{$wgMobileFrontendLogo}' {$logoOnClick} {$logoDisplayNone} /> |
— | — | @@ -32,7 +33,6 @@ |
33 | 34 | </div> |
34 | 35 | <button id='goButton' type='submit'></button> |
35 | 36 | </form> |
36 | | - {$openSearchResults} |
37 | 37 | </div> |
38 | 38 | <div class='nav' id='nav' {$logoDisplayNone}> |
39 | 39 | {$languageSelectionDiv} |