From 0ad5efd888d8014fe62031f976ebd61866f2228f Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Thu, 14 Feb 2013 17:49:17 +0000 Subject: [PATCH] 2013-02-14 Ramon Novoa * operation/snmpconsole/snmp_browser.php: Changed the size of some text inputs to make them look good in Firefox. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7657 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/operation/snmpconsole/snmp_browser.php | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index cd272ea3f0..105ffce63d 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2013-02-14 Ramon Novoa + + * operation/snmpconsole/snmp_browser.php: Changed the size of some + text inputs to make them look good in Firefox. + 2013-02-14 Ramon Novoa * godmode/setup/setup_netflow.php, diff --git a/pandora_console/operation/snmpconsole/snmp_browser.php b/pandora_console/operation/snmpconsole/snmp_browser.php index 62755736c7..60ab6ee2a3 100644 --- a/pandora_console/operation/snmpconsole/snmp_browser.php +++ b/pandora_console/operation/snmpconsole/snmp_browser.php @@ -79,15 +79,15 @@ $table->data = array (); // String search_string $table->data[0][0] = ''.__('Target IP').''; -$table->data[0][1] = html_print_input_text ('target_ip', '', '', 50, 0, true); +$table->data[0][1] = html_print_input_text ('target_ip', '', '', 25, 0, true); $table->data[0][2] = ''.__('Community').''; -$table->data[0][3] = html_print_input_text ('community', '', '', 50, 0, true); +$table->data[0][3] = html_print_input_text ('community', '', '', 25, 0, true); $table->data[0][4] = html_print_image ("images/fullscreen.png", true, array ('title' => __('Expand the tree') . ' (' . __('can be slow') . ')', 'style' => 'vertical-align: middle;', 'onclick' => 'expandAll();')); $table->data[0][4] .= ' ' . html_print_image ("images/normalscreen.png", true, array ('title' => __('Collapse the tree'), 'style' => 'vertical-align: middle;', 'onclick' => 'collapseAll();')); $table->data[1][0] = ''.__('Starting OID').''; -$table->data[1][1] = html_print_input_text ('starting_oid', '', '', 50, 0, true); +$table->data[1][1] = html_print_input_text ('starting_oid', '', '', 25, 0, true); $table->data[1][2] = ''.__('Search text').''; -$table->data[1][3] = html_print_input_text ('search_text', '', '', 50, 0, true); +$table->data[1][3] = html_print_input_text ('search_text', '', '', 25, 0, true); $table->data[1][4] = html_print_image ("images/lupa.png", true, array ('title' => __('Search'), 'style' => 'vertical-align: middle;', 'onclick' => 'searchText();')); $table->data[1][4] .= ' ' . html_print_image ("images/go_first.png", true, array ('title' => __('First match'), 'style' => 'vertical-align: middle;', 'onclick' => 'searchFirstMatch();')); $table->data[1][4] .= ' ' . html_print_image ("images/go_previous.png", true, array ('title' => __('Previous match'), 'style' => 'vertical-align: middle;', 'onclick' => 'searchPrevMatch();'));