From 49411f17e4d31b9abf41ae522d62fb3df870e924 Mon Sep 17 00:00:00 2001
From: fermin831 <fermin.hernandez@artica.es>
Date: Thu, 16 Nov 2017 15:35:26 +0100
Subject: [PATCH] Fixed dark arrow in Interface information (SNMP)

---
 pandora_console/images/arrow-down-white.png       | Bin 0 -> 268 bytes
 pandora_console/images/arrow-up-white.png         | Bin 0 -> 264 bytes
 .../operation/agentes/estado_generalagente.php    |   6 +++---
 3 files changed, 3 insertions(+), 3 deletions(-)
 create mode 100644 pandora_console/images/arrow-down-white.png
 create mode 100644 pandora_console/images/arrow-up-white.png

diff --git a/pandora_console/images/arrow-down-white.png b/pandora_console/images/arrow-down-white.png
new file mode 100644
index 0000000000000000000000000000000000000000..eb2160660dbceade57303afbed92c82b0ee880ed
GIT binary patch
literal 268
zcmeAS@N?(olHy`uVBq!ia0vp^q9Dw{#=yXMPhcvL%^+Fg8c`CQpH@<ySd_}(n3A8A
zs^FQMn4TJxnwU~qcrw)nsA!$1i(^Q|t)v78rXGby|NsAIa#+O>*~F;O(BZ<s=pw=B
zTmN64>BDUX0f!~CcguI?Hs~<2Es<mwa42#5FL;3Als*5`?~gB+$VCcAGAJ~(i7@>X
z>A3#5yJUs~vq{E1<;)}V7#flo|6gRVQ|EBFdPiPmA(KGD;*PqL`L;n)JNtDXJ6=9s
zr&9X6)6n9fy&6NOrGn@b1B3Z<d_K!{vnp(4@M>mxa<^{6>II_53>X;Lp8Y9(aM0y0
O$bX)$elF{r5}E+OCtm&l

literal 0
HcmV?d00001

diff --git a/pandora_console/images/arrow-up-white.png b/pandora_console/images/arrow-up-white.png
new file mode 100644
index 0000000000000000000000000000000000000000..2c51c21325e73d3e70e6e3fa808d160b93f63771
GIT binary patch
literal 264
zcmeAS@N?(olHy`uVBq!ia0vp^q9Dw{#=yXMPhcvL%^+Fg8c`CQpH@<ySd_}(n3A8A
zs^FQMn4TJxnwU~qcrw)nsA!d^i(^Q|t)v76E(R6>wO{-!5={(@E_=+HZZR@-*la$}
zypgdhRe@2Vj{nHtBhst_4ka%C4IP<$`Z#?bRw<~S=wNB6sa{aQaB>?H%Y_Lp4)e7f
znqS!2xpKZ>?D7p{4tZxgCBGrmFl3RuuMb1Vcm9G529_HdN>*1J7G>Lsa0g^btg&!p
zS1@D`;(dKQi9_S3Rl>$4^Cg(CD`#5tpWS`ofkpq4JQG!C28O+N{xn7$J@FRgH&0hT
Jmvv4FO#n<@SN{M2

literal 0
HcmV?d00001

diff --git a/pandora_console/operation/agentes/estado_generalagente.php b/pandora_console/operation/agentes/estado_generalagente.php
index ae7bcef432..b3434e5389 100755
--- a/pandora_console/operation/agentes/estado_generalagente.php
+++ b/pandora_console/operation/agentes/estado_generalagente.php
@@ -467,7 +467,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) . "&nbsp;&nbsp;";
+	$table_interface->head[0] = html_print_image("images/graphmenu_arrow.png", true, $options) . "&nbsp;&nbsp;";
 	$table_interface->head[0] .= '<span style="vertical-align: middle;">' . __('Interface information') .' (SNMP)</span>';
 	$table_interface->head_colspan = array();
 	$table_interface->head_colspan[0] = 8;
@@ -593,11 +593,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();
 					}
 				})