diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-19 07:43:07 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-19 07:43:07 +0000 |
| commit | d8d3cf69e1f85cb2c9c15a0e51d2fb0583cd7f59 (patch) | |
| tree | 1cae789689c9491c52a18b9c6585404bbac7bfda | |
| parent | e3490449500a655f74d210b0fa5e463d4a2d2b9f (diff) | |
- Set style of login form inputs using class not IDs
git-svn-id: https://svn.roundcube.net/trunk@5236 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rwxr-xr-x | roundcubemail/program/include/rcube_template.php | 6 | ||||
| -rw-r--r-- | roundcubemail/skins/default/common.css | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/roundcubemail/program/include/rcube_template.php b/roundcubemail/program/include/rcube_template.php index 1ec8e7dd3..a26796bf9 100755 --- a/roundcubemail/program/include/rcube_template.php +++ b/roundcubemail/program/include/rcube_template.php @@ -1142,15 +1142,15 @@ class rcube_template extends rcube_html_page $table = new html_table(array('cols' => 2)); $table->add('title', html::label('rcmloginuser', Q(rcube_label('username')))); - $table->add(null, $input_user->show(get_input_value('_user', RCUBE_INPUT_GPC))); + $table->add('input', $input_user->show(get_input_value('_user', RCUBE_INPUT_GPC))); $table->add('title', html::label('rcmloginpwd', Q(rcube_label('password')))); - $table->add(null, $input_pass->show()); + $table->add('input', $input_pass->show()); // add host selection row if (is_object($input_host) && !$hide_host) { $table->add('title', html::label('rcmloginhost', Q(rcube_label('server')))); - $table->add(null, $input_host->show(get_input_value('_host', RCUBE_INPUT_GPC))); + $table->add('input', $input_host->show(get_input_value('_host', RCUBE_INPUT_GPC))); } $out = $input_task->show(); diff --git a/roundcubemail/skins/default/common.css b/roundcubemail/skins/default/common.css index f5b1d3de9..4b2567623 100644 --- a/roundcubemail/skins/default/common.css +++ b/roundcubemail/skins/default/common.css @@ -738,7 +738,7 @@ a.rcmContactAddress:hover margin: auto; } -#rcmloginuser, #rcmloginpwd, #rcmloginhost +#login-form table td.input input { width: 200px; } |
