From f8243463dd7529ef2144314d797105a766f3d379 Mon Sep 17 00:00:00 2001 From: Prateek Saxena Date: Mon, 22 Sep 2014 14:51:00 -0700 Subject: [PATCH] Special:ActiveUsers: Use mw-ui-input-inline Bug: 71142 Change-Id: Ie737b8bd74179ce916747c5e9cd23304e2ad8b16 --- includes/specials/SpecialActiveusers.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 ) ); -- 2.20.1