Index: trunk/extensions/SemanticMediaWiki/specials/AskSpecial/SMW_QueryUIHelper.php |
— | — | @@ -1675,7 +1675,7 @@ |
1676 | 1676 | Html::rawElement( |
1677 | 1677 | 'div', |
1678 | 1678 | array( |
1679 | | - 'style' => 'width: 30%; padding: 5px; float: left;' |
| 1679 | + 'style' => 'width: 30%; min-width:220px; margin:5px; padding: 1px; float: left;' |
1680 | 1680 | ), |
1681 | 1681 | '<label for="p[' . htmlspecialchars( $param->getName() ) . ']">' . htmlspecialchars( $param->getName() ) . ': </label>' . |
1682 | 1682 | $this->showFormatOption( $param, $currentValue ) . |
Index: trunk/extensions/SemanticMediaWiki/specials/AskSpecial/SMW_SpecialQueryCreator.php |
— | — | @@ -229,21 +229,21 @@ |
230 | 230 | } |
231 | 231 | $result = '<fieldset><legend>' . wfMsg( 'smw_ask_otheroptions' ) . "</legend>\n" . |
232 | 232 | Html::rawElement( 'div', |
233 | | - array( 'style' => 'width: 30%; padding: 5px; float: left;' ), |
| 233 | + array( 'style' => 'width: 30%; min-width:220px; margin:5px; padding: 1px; float: left;' ), |
234 | 234 | wfMsg( 'smw_qc_intro' ) . |
235 | | - '<input name="p[intro]" value="' . $intro . '"size="32"/> <br/>' . |
| 235 | + '<input name="p[intro]" value="' . $intro . '" style="width:220px;"/> <br/>' . |
236 | 236 | wfMsg( 'smw_paramdesc_intro' ) |
237 | 237 | ) . |
238 | 238 | Html::rawElement( 'div', |
239 | | - array( 'style' => 'width: 30%; padding: 5px; float: left;' ), |
| 239 | + array( 'style' => 'width: 30%; min-width:220px; margin:5px; padding: 1px; float: left;' ), |
240 | 240 | wfMsg( 'smw_qc_outro' ) . |
241 | | - '<input name="p[outro]" value="' . $outro . '" size="32"/> <br/>' . |
| 241 | + '<input name="p[outro]" value="' . $outro . '" style="width:220px;"/> <br/>' . |
242 | 242 | wfMsg( 'smw_paramdesc_outro' ) |
243 | 243 | ) . |
244 | 244 | Html::rawElement( 'div', |
245 | | - array( 'style' => 'width: 30%; padding: 5px; float: left;' ), |
| 245 | + array( 'style' => 'width: 30%; min-width:220px; margin:5px; padding: 1px; float: left;' ), |
246 | 246 | wfMsg( 'smw_qc_default' ) . |
247 | | - '<input name="p[default]" value="' . $default . '" size="32"/> <br/>' . |
| 247 | + '<input name="p[default]" value="' . $default . '" style="width:220px;" /> <br/>' . |
248 | 248 | wfMsg( 'smw_paramdesc_default' ) |
249 | 249 | ) . |
250 | 250 | Html::hidden( 'p[limit]', $limit ) . |