Follow-up 90518: also align URL input box as LTR

This commit is contained in:
Robin Pepermans 2011-06-21 10:49:52 +00:00
parent 4f12bf285c
commit be4b52fed1
Notes: Robin Pepermans 2011-06-21 10:49:52 +00:00
2 changed files with 7 additions and 1 deletions

View file

@ -25,4 +25,8 @@ table.mw-interwikitable.body td.mw-interwikitable-modify {
}
.mw-interwikitable-url {
text-align: left;
}
input#mw-interwiki-url {
text-align: left;
direction: ltr;
}

View file

@ -77,7 +77,9 @@ class SpecialInterwiki extends SpecialPage {
}
function showForm( $action ) {
global $wgRequest, $wgUser, $wgOut;
global $wgRequest, $wgUser, $wgOut, $wgScriptPath;
$wgOut->addExtensionStyle( "{$wgScriptPath}/extensions/Interwiki/Interwiki.css" );
$actionUrl = $this->getTitle()->getLocalURL( 'action=submit' );
$token = $wgUser->editToken();