mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-27 15:54:29 +02:00
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:
parent
8227475beb
commit
97396fc2d5
@ -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.
|
||||||
|
@ -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;
|
||||||
|
@ -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.'&group_rep=0&offset=0&pure='.$config["pure"].'&search='.rawurlencode ($event["evento"]).'">';
|
$data[1] .= '<a href="'.$url.'&group_rep=0&offset=0&pure='.$config["pure"].'&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] = '';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user