From d51772b6e0e6cb337a9fb9eb3e7b698e1ac6301c Mon Sep 17 00:00:00 2001 From: jdlrobson Date: Fri, 16 Jan 2015 14:39:00 -0800 Subject: [PATCH] Stop using mw-ui-big on login form buttons This is inconsistent with mobile and is one of the blockers from us using this form rather than our own on a mobile device. Also mw-ui-big is a terrible class name and we should be deprecating its usage. Change-Id: I56e93429431690cf1b9ef043620b36148e3b4a7a --- includes/templates/Usercreate.php | 1 - includes/templates/Userlogin.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/includes/templates/Usercreate.php b/includes/templates/Usercreate.php index 4eea01c3d0..d783c6ae52 100644 --- a/includes/templates/Usercreate.php +++ b/includes/templates/Usercreate.php @@ -262,7 +262,6 @@ class UsercreateTemplate extends BaseTemplate { 'tabindex' => $tabIndex++ ), array( - 'mw-ui-big', 'mw-ui-block', 'mw-ui-constructive', ) diff --git a/includes/templates/Userlogin.php b/includes/templates/Userlogin.php index 8bbbfa6800..345bb71bc6 100644 --- a/includes/templates/Userlogin.php +++ b/includes/templates/Userlogin.php @@ -143,7 +143,7 @@ class UserloginTemplate extends BaseTemplate { 'tabindex' => '6', ); $modifiers = array( - 'mw-ui-big', 'mw-ui-constructive', + 'mw-ui-constructive', ); echo Html::submitButton( $this->getMsg( 'pt-login-button' )->text(), $attrs, $modifiers ); ?> -- 2.20.1