From: Prateek Saxena Date: Mon, 22 Sep 2014 21:51:00 +0000 (-0700) Subject: Special:ActiveUsers: Use mw-ui-input-inline X-Git-Tag: 1.31.0-rc.0~13884^2 X-Git-Url: http://git.cyclocoop.org/%22.%20%20%20generer_url_action%28%22logout%22%2C%22logout=prive%22%29%20.%20%20%20%22?a=commitdiff_plain;h=f8243463dd7529ef2144314d797105a766f3d379;p=lhc%2Fweb%2Fwiklou.git Special:ActiveUsers: Use mw-ui-input-inline Bug: 71142 Change-Id: Ie737b8bd74179ce916747c5e9cd23304e2ad8b16 --- diff --git a/includes/specials/SpecialActiveusers.php b/includes/specials/SpecialActiveusers.php index ce436525b0..d17b6714dd 100644 --- a/includes/specials/SpecialActiveusers.php +++ b/includes/specials/SpecialActiveusers.php @@ -205,7 +205,8 @@ class ActiveUsersPager extends UsersPager { # Username field $out .= Xml::inputLabel( $this->msg( 'activeusers-from' )->text(), - 'username', 'offset', 20, $this->requestedUser, array( 'tabindex' => 1 ) ) . '
'; + 'username', 'offset', 20, $this->requestedUser, + array( 'class' => 'mw-ui-input-inline', 'tabindex' => 1 ) ) . '
'; $out .= Xml::checkLabel( $this->msg( 'activeusers-hidebots' )->text(), 'hidebots', 'hidebots', $this->opts->getValue( 'hidebots' ), array( 'tabindex' => 2 ) );