improve design for ssl-certificate descriptions, also increase size of textareas to fit a certificate-width

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p)
2013-10-06 13:57:39 +02:00
parent 56ef9e1992
commit e078d39f2d
3 changed files with 18 additions and 14 deletions

View File

@@ -29,8 +29,8 @@ return array(
'label' => $lng['admin']['ipsandports']['ssl_cert_file_content'],
'desc' => $lng['admin']['ipsandports']['ssl_paste_description'],
'type' => 'textarea',
'cols' => 60,
'rows' => 12,
'cols' => 100,
'rows' => 15,
'value' => $result['ssl_cert_file']
),
'ssl_key_file' => array(
@@ -38,26 +38,26 @@ return array(
'label' => $lng['admin']['ipsandports']['ssl_key_file_content'],
'desc' => $lng['admin']['ipsandports']['ssl_paste_description'],
'type' => 'textarea',
'cols' => 60,
'rows' => 12,
'cols' => 100,
'rows' => 15,
'value' => $result['ssl_key_file']
),
'ssl_cert_chainfile' => array(
'style' => 'vertical-align:top;',
'label' => $lng['admin']['ipsandports']['ssl_cert_chainfile_content'],
'desc' => $lng['admin']['ipsandports']['ssl_paste_description'],
'desc' => $lng['admin']['ipsandports']['ssl_paste_description'].$lng['admin']['ipsandports']['ssl_cert_chainfile_content_desc'],
'type' => 'textarea',
'cols' => 60,
'rows' => 12,
'cols' => 100,
'rows' => 15,
'value' => $result['ssl_cert_chainfile']
),
'ssl_ca_file' => array(
'style' => 'vertical-align:top;',
'label' => $lng['admin']['ipsandports']['ssl_ca_file_content'],
'desc' => $lng['admin']['ipsandports']['ssl_paste_description'],
'desc' => $lng['admin']['ipsandports']['ssl_paste_description'].$lng['admin']['ipsandports']['ssl_ca_file_content_desc'],
'type' => 'textarea',
'cols' => 60,
'rows' => 12,
'cols' => 100,
'rows' => 15,
'value' => $result['ssl_ca_file']
)
)