diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 7cbd798810..a244085e44 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,11 @@ +2012-05-28 Sancho Lerena + + * godmode/agentes/module_manager_editor_plugin.php: A bit more + space on IP target field (a URL doesn't fit there!). + + * include/styles/pandora.css: Plugin description is not shown + in small font. + 2012-05-28 Vanessa Gil * extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql diff --git a/pandora_console/godmode/agentes/module_manager_editor_plugin.php b/pandora_console/godmode/agentes/module_manager_editor_plugin.php index 0430842493..5f1ebc1234 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_plugin.php +++ b/pandora_console/godmode/agentes/module_manager_editor_plugin.php @@ -58,7 +58,7 @@ push_table_simple ($data, 'plugin_1'); $data = array (); $data[0] = __('Target IP'); -$data[1] = html_print_input_text ('ip_target', $ip_target, '', 15, 60, true); +$data[1] = html_print_input_text ('ip_target', $ip_target, '', 50, 60, true); $data[2] = __('Port'); $data[3] = html_print_input_text ('tcp_port', $tcp_port, '', 15, 20, true); @@ -66,7 +66,7 @@ push_table_simple ($data, 'target_ip'); $data = array (); $data[0] = __('Username'); -$data[1] = html_print_input_text ('plugin_user', $plugin_user, '', 15, 60, true); +$data[1] = html_print_input_text ('plugin_user', $plugin_user, '', 30, 60, true); $data[2] = __('Password'); $data[3] = html_print_input_password ('plugin_pass', $plugin_pass, '', 15, 60, true); diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 44f56a034d..81618b7526 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -1662,3 +1662,6 @@ input#text-id_parent.ac_input, input, textarea, select { border: 1px solid #cbcbcb; } +span#plugin_description { + font-size: 9px; +}