From 69daed683161bc0783ac69a8c2fd8af3ca06655f Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Fri, 30 Apr 2021 10:12:33 +0200 Subject: [PATCH] Decrease default width of password form fields See #4148 --- .../lib/system/form/builder/field/PasswordFormField.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/form/builder/field/PasswordFormField.class.php b/wcfsetup/install/files/lib/system/form/builder/field/PasswordFormField.class.php index 7785633be9..4cc6dfa5aa 100644 --- a/wcfsetup/install/files/lib/system/form/builder/field/PasswordFormField.class.php +++ b/wcfsetup/install/files/lib/system/form/builder/field/PasswordFormField.class.php @@ -53,7 +53,7 @@ class PasswordFormField extends AbstractFormField implements public function __construct() { $this->label('wcf.user.password'); - $this->addFieldClass('long'); + $this->addFieldClass('medium'); } /** -- 2.20.1