diff --git a/pandora_console/images/arrow-down-white.png b/pandora_console/images/arrow-down-white.png new file mode 100644 index 0000000000..eb2160660d Binary files /dev/null and b/pandora_console/images/arrow-down-white.png differ diff --git a/pandora_console/images/arrow-up-white.png b/pandora_console/images/arrow-up-white.png new file mode 100644 index 0000000000..2c51c21325 Binary files /dev/null and b/pandora_console/images/arrow-up-white.png differ diff --git a/pandora_console/operation/agentes/estado_generalagente.php b/pandora_console/operation/agentes/estado_generalagente.php index b14944b03e..8320845549 100755 --- a/pandora_console/operation/agentes/estado_generalagente.php +++ b/pandora_console/operation/agentes/estado_generalagente.php @@ -473,7 +473,7 @@ if (!empty($network_interfaces)) { $options = array( "class" => "closed", "style" => "vertical-align:righ; cursor:pointer;"); - $table_interface->head[0] = html_print_image("images/go.png", true, $options) . "  "; + $table_interface->head[0] = html_print_image("images/graphmenu_arrow.png", true, $options) . "  "; $table_interface->head[0] .= '' . __('Interface information') .' (SNMP)'; $table_interface->head_colspan = array(); $table_interface->head_colspan[0] = 8; @@ -599,11 +599,11 @@ if (!empty($network_interfaces)) { var arrow = $("#agent_interface_info").find("thead").find("img"); if (arrow.hasClass("closed")) { arrow.removeClass("closed"); - arrow.prop("src", "images/down.png"); + arrow.prop("src", "images/arrow-down-white.png"); $("#agent_interface_info").find("tbody").show(); } else { arrow.addClass("closed"); - arrow.prop("src", "images/go.png"); + arrow.prop("src", "images/graphmenu_arrow.png"); $("#agent_interface_info").find("tbody").hide(); } })