Index: trunk/phase3/skins/common/shared.css |
— | — | @@ -288,7 +288,11 @@ |
289 | 289 | font-weight: bold; |
290 | 290 | } |
291 | 291 | |
| 292 | +table#mw-search-top-table { |
| 293 | + background-color:inherit; |
| 294 | +} |
292 | 295 | |
| 296 | + |
293 | 297 | /* |
294 | 298 | * Advanced PowerSearch box |
295 | 299 | */ |
Index: trunk/phase3/includes/specials/SpecialSearch.php |
— | — | @@ -203,7 +203,7 @@ |
204 | 204 | ) |
205 | 205 | ); |
206 | 206 | $wgOut->addHtml( |
207 | | - Xml::openElement( 'table', array( 'border'=>0, 'cellpadding'=>0, 'cellspacing'=>0 ) ) . |
| 207 | + Xml::openElement( 'table', array( 'id'=>'mw-search-top-table', 'border'=>0, 'cellpadding'=>0, 'cellspacing'=>0 ) ) . |
208 | 208 | Xml::openElement( 'tr' ) . |
209 | 209 | Xml::openElement( 'td' ) . "\n" . |
210 | 210 | $this->shortDialog( $term ) . |