2011-08-26 Juan Manuel Ramon <juanmanuel.ramon@artica.es>

* include/styles/pandora.css
        operation/events/events_list.php: Fixed css style on th view.

        Fixes: #3394739




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4830 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
juanmanuelr 2011-08-26 09:35:15 +00:00
parent 8227475beb
commit 97396fc2d5
3 changed files with 21 additions and 7 deletions

View File

@ -1,3 +1,10 @@
2011-08-26 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* include/styles/pandora.css
operation/events/events_list.php: Fixed css style on th view.
Fixes: #3394739
2011-08-25 Miguel de Dios <miguel.dedios@artica.es> 2011-08-25 Miguel de Dios <miguel.dedios@artica.es>
* operation/agentes/datos_agente.php: change the width of data table. * operation/agentes/datos_agente.php: change the width of data table.

View File

@ -861,6 +861,9 @@ div#main_pure {
margin-top: 10px; margin-top: 10px;
margin-left: 10px; margin-left: 10px;
margin-right: 10px; margin-right: 10px;
height: auto;
width: 98%;
position: absolute;
} }
#table-agent-configuration radio { #table-agent-configuration radio {
margin-right: 40px; margin-right: 40px;

View File

@ -453,27 +453,31 @@ foreach ($result as $event) {
// Event description // Event description
$data[1] = '<span title="'.$event["evento"].'" class="f9">'; $data[1] = '<span title="'.$event["evento"].'" class="f9">';
$data[1] .= '<a href="'.$url.'&amp;group_rep=0&amp;offset=0&amp;pure='.$config["pure"].'&amp;search='.rawurlencode ($event["evento"]).'">'; $data[1] .= '<a href="'.$url.'&amp;group_rep=0&amp;offset=0&amp;pure='.$config["pure"].'&amp;search='.rawurlencode ($event["evento"]).'">';
$data[1] .= '<span style="font-size: 7.5pt;">' . io_safe_output($event["evento"]) . '</span>'; $data[1] .= '<span style="font-size: 7.5pt; color: #000000">' . io_safe_output($event["evento"]) . '</span>';
$data[1] .= '</a></span>'; $data[1] .= '</a></span>';
$data[2] = '<span style="color: #000000">';
if ($event["event_type"] == "system") { if ($event["event_type"] == "system") {
$data[2] = __('System'); $data[2] .= __('System');
} }
elseif ($event["id_agente"] > 0) { elseif ($event["id_agente"] > 0) {
// Agent name // Agent name
$data[2] = ui_print_agent_name ($event["id_agente"], true); $data[2] .= ui_print_agent_name ($event["id_agente"], true);
} }
else { else {
$data[2] = __('Alert').__('SNMP'); $data[2] .= __('Alert').__('SNMP');
} }
$data[2] .= '</span>';
//Time //Time
$data[3] = '<span style="color: #000000">';
if ($group_rep == 1) { if ($group_rep == 1) {
$data[3] = ui_print_timestamp ($event['timestamp_rep'], true); $data[3] .= ui_print_timestamp ($event['timestamp_rep'], true);
} }
else { else {
$data[3] = ui_print_timestamp ($event["timestamp"], true); $data[3] .= ui_print_timestamp ($event["timestamp"], true);
} }
$data[3] .= '</span>';
//Actions //Actions
$data[4] = ''; $data[4] = '';