From aa518a6d83692496564f195fd2818dee38f50949 Mon Sep 17 00:00:00 2001 From: umherirrender Date: Sat, 7 May 2016 19:37:07 +0200 Subject: [PATCH] Use better styles for fake button in installer The old style with visibilty:hidden does not let the enter button do the submit in IE. The new style works in IE. Tested also with FF and Opera. Change-Id: I7f86217c2905dabc6d222b3d7b896159b204db0a --- includes/installer/WebInstallerPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/installer/WebInstallerPage.php b/includes/installer/WebInstallerPage.php index daa429a349..2ab055464d 100644 --- a/includes/installer/WebInstallerPage.php +++ b/includes/installer/WebInstallerPage.php @@ -98,7 +98,7 @@ abstract class WebInstallerPage { wfMessage( "config-$continue" )->text(), [ 'name' => "enter-$continue", - 'style' => 'visibility:hidden;overflow:hidden;width:1px;margin:0' + 'style' => 'width:0;border:0;height:0;padding:0' ] ) . "\n"; } -- 2.20.1