';
+echo '
';
ui_toggle(
$access_graph,
- '',
+ '',
'',
'',
true,
@@ -812,7 +816,7 @@ function treeview_printTable($id_agente, $server_data=[], $no_head=false)
$table_interfaces = html_print_table($table, true);
$table_interfaces .= '
';
- ui_toggle($table_interfaces, __('Interface information').' (SNMP)');
+ ui_toggle($table_interfaces, '');
}
// Advanced data.
@@ -906,7 +910,7 @@ function treeview_printTable($id_agente, $server_data=[], $no_head=false)
// End of table advanced.
ui_toggle(
html_print_table($table_advanced, true),
- '',
+ '',
'',
'',
true,
diff --git a/pandora_console/include/styles/agent_manager.css b/pandora_console/include/styles/agent_manager.css
index 02cc4ba09c..6c9b69e973 100644
--- a/pandora_console/include/styles/agent_manager.css
+++ b/pandora_console/include/styles/agent_manager.css
@@ -48,7 +48,7 @@ a#qr_code_agent_view {
.sg_source,
.sg_target {
width: 100%;
- height: 110px;
+ /*height: 110px;*/
}
.sg_source select,
diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css
index 5ab555ef88..91df0d66e6 100644
--- a/pandora_console/include/styles/pandora.css
+++ b/pandora_console/include/styles/pandora.css
@@ -5939,6 +5939,9 @@ div#bullets_modules div {
}
/* First row in agent view */
+.agent_details_first_row.agent_details_line {
+ margin: 0;
+}
.agent_details_line {
display: flex;
margin: 20px 0 0;
@@ -6140,7 +6143,7 @@ div#status_pie {
}
.white_table_graph_fixed {
- margin: 0 20px 20px;
+ margin: 0 0 20px;
}
.white_table_graph_fixed table {
@@ -11029,6 +11032,7 @@ table.table_modal_alternate
.tags_available_container {
display: flex;
+ align-items: center;
}
.tags_selected_container .select2-selection--multiple {
@@ -11041,7 +11045,8 @@ table.table_modal_alternate
.selection
span.select2-selection--multiple
ul.select2-selection__rendered {
- padding: 5px 0 !important;
+ padding: 5px 0 0 0 !important;
+ float: left;
}
.result_info_text {
@@ -11098,6 +11103,13 @@ table.table_modal_alternate
span.subsection_header_title {
height: 18px;
}
+.subsection_header_title.secondary {
+ font-size: 14px;
+}
+
+span.subsection_header_title.secondary {
+ height: 14px;
+}
.regular_font {
font-family: "lato" !important;
}
diff --git a/pandora_console/operation/agentes/alerts_status.php b/pandora_console/operation/agentes/alerts_status.php
index c402e2e820..89ac59d704 100755
--- a/pandora_console/operation/agentes/alerts_status.php
+++ b/pandora_console/operation/agentes/alerts_status.php
@@ -522,7 +522,7 @@ if ($agent_view_page === true) {
true,
'box-flat agent_details_col',
'white-box-content',
- 'mrgn_lft_20px mrgn_right_20px width_available'
+ 'width_available'
),
],
);
diff --git a/pandora_console/operation/agentes/estado_generalagente.php b/pandora_console/operation/agentes/estado_generalagente.php
index ebd9af3506..6461024410 100755
--- a/pandora_console/operation/agentes/estado_generalagente.php
+++ b/pandora_console/operation/agentes/estado_generalagente.php
@@ -160,7 +160,7 @@ $table_status->cellspacing = 0;
$table_status->cellpadding = 0;
$table_status->class = 'floating_form';
$table_status->style[0] = 'height: 32px; width: 30%; padding-right: 5px; text-align: end;';
-$table_status->style[1] = 'height: 32px; width: 70%; padding-left: 5px;';
+$table_status->style[1] = 'height: 32px; width: 70%; padding-left: 5px; font-weight: lighter';
$agentStatusGraph = html_print_div(
[
@@ -382,7 +382,7 @@ $table_contact->cellspacing = 0;
$table_contact->cellpadding = 0;
$table_contact->class = 'floating_form';
$table_contact->style[0] = 'height: 32px; width: 30%; padding-right: 5px; text-align: end;';
-$table_contact->style[1] = 'height: 32px; width: 70%; padding-left: 5px;';
+$table_contact->style[1] = 'height: 32px; width: 70%; padding-left: 5px; font-weight: lighter';
$agentContactCaption = html_print_div(
[
@@ -705,7 +705,7 @@ if ((bool) $config['agentaccess'] === true && $access_agent > 0) {
$agentAccessRate = html_print_div(
[
- 'class' => 'box-flat agent_details_col mrgn_right_20px',
+ 'class' => 'box-flat agent_details_col mrgn_lft_20px',
'id' => 'table_access_rate',
'content' => $agentAccessRateHeader.$agentAccessRateContent,
],
@@ -991,7 +991,7 @@ $agent_contact .= html_print_table($table_contact, true);
$agentDetails = html_print_div(
[
- 'class' => 'box-flat agent_details_col mrgn_lft_20px mrgn_right_20px',
+ 'class' => 'box-flat agent_details_col',
'content' => $table_agent,
],
true
@@ -999,7 +999,7 @@ $agentDetails = html_print_div(
$agentContact = html_print_div(
[
- 'class' => 'box-flat agent_details_col mrgn_right_20px',
+ 'class' => 'box-flat agent_details_col mrgn_lft_20px',
'content' => $agent_contact,
],
true
@@ -1032,7 +1032,7 @@ $agentEventsGraph = html_print_div(
$agentEvents = html_print_div(
[
- 'class' => 'box-flat agent_details_col mrgn_lft_20px mrgn_right_20px',
+ 'class' => 'box-flat agent_details_col',
'content' => $agentEventsHeader.$agentEventsGraph,
],
true
@@ -1052,8 +1052,8 @@ if (isset($data_opcional) === false || isset($data_opcional->data) === false ||
false,
true,
'box-flat agent_details_col agent_details_toggle agent_details_first_row w100p',
- 'mrgn_lft_20px mrgn_right_20px',
- 'mrgn_lft_20px mrgn_right_20px w100p'
+ 'mrgn_right_20px',
+ 'w100p'
);
}
diff --git a/pandora_console/operation/agentes/estado_monitores.php b/pandora_console/operation/agentes/estado_monitores.php
index df8d607ee9..0d04a3b6f0 100755
--- a/pandora_console/operation/agentes/estado_monitores.php
+++ b/pandora_console/operation/agentes/estado_monitores.php
@@ -203,7 +203,7 @@ html_print_div(
true,
'box-flat agent_details_col',
'white-box-content',
- 'mrgn_lft_20px mrgn_right_20px width_available'
+ 'width_available'
),
],
);
diff --git a/pandora_console/operation/agentes/status_events.php b/pandora_console/operation/agentes/status_events.php
index 9932f94709..d4c63a8b2c 100755
--- a/pandora_console/operation/agentes/status_events.php
+++ b/pandora_console/operation/agentes/status_events.php
@@ -34,7 +34,7 @@ html_print_div(
true,
'box-flat agent_details_col',
'white-box-content',
- 'mrgn_lft_20px mrgn_right_20px width_available'
+ 'width_available'
),
],
);