Merge branch 'ent-11092-vista-tactica-de-grupo-es-demasiado-ancha' into 'develop'

Draft: Ent 11092 vista tactica de grupo es demasiado ancha

See merge request artica/pandorafms!5817
This commit is contained in:
Daniel Rodriguez 2023-05-16 10:12:57 +00:00
commit 05a2aa07d5
2 changed files with 37 additions and 11 deletions

View File

@ -98,16 +98,15 @@ if (count($groups) > 0) {
echo '<div id="tactic_view">'; echo '<div id="tactic_view">';
echo '<table style="width: 100%;">'; echo '<div class="tactical_group_left_columns">';
echo '<tr>'; echo '<div class="tactical_group_left_column">';
echo '<td class="tactical_group_left_column">';
$table_col1 = new stdClass(); $table_col1 = new stdClass();
$table_col1->class = 'no-class'; $table_col1->class = 'no-class';
$table_col1->data = []; $table_col1->data = [];
$table_col1->rowclass[] = ''; $table_col1->rowclass[] = '';
$table_col1->headstyle[0] = 'text-align:center;'; $table_col1->headstyle[0] = 'text-align:center;';
$table_col1->width = '100%'; $table_col1->width = '100%';
$table_col1->data[0][0] = groups_get_heat_map_agents($id_groups, 450, 100); $table_col1->data[0][0] = groups_get_heat_map_agents($id_groups, 330, 100);
$table_col1->data[1][0] = tactical_groups_get_agents_and_monitoring($id_groups); $table_col1->data[1][0] = tactical_groups_get_agents_and_monitoring($id_groups);
$distribution_by_so = '<table cellpadding=0 cellspacing=0 class="databox pies graph-distribution-so" width=100%><tr><td style="width:50%;">'; $distribution_by_so = '<table cellpadding=0 cellspacing=0 class="databox pies graph-distribution-so" width=100%><tr><td style="width:50%;">';
@ -130,8 +129,8 @@ ui_toggle(
false false
); );
echo '</td>'; echo '</div>';
echo '<td class="tactical_group_left_column">'; echo '<div class="tactical_group_left_column">';
$table_col2 = new stdClass(); $table_col2 = new stdClass();
$table_col2->class = 'no-class'; $table_col2->class = 'no-class';
$table_col2->data = []; $table_col2->data = [];
@ -158,8 +157,9 @@ ui_toggle(
false, false,
false false
); );
echo '</td>'; echo '</div>';
echo '<td class="tactical_group_right_column">'; echo '</div>';
echo '<div class="tactical_group_right_column">';
$table_col3 = new stdClass(); $table_col3 = new stdClass();
$table_col3->class = 'no-class'; $table_col3->class = 'no-class';
$table_col3->data = []; $table_col3->data = [];
@ -216,9 +216,8 @@ ui_toggle(
false, false,
false false
); );
echo '</td>'; echo '</div>';
echo '</tr>'; echo '</div>';
echo '</table>';
echo '<div id="modal-info-agent"></div>' echo '<div id="modal-info-agent"></div>'
?> ?>

View File

@ -32,3 +32,30 @@ rect {
#list_agents_tactical_wrapper .dataTables_length { #list_agents_tactical_wrapper .dataTables_length {
margin-bottom: 10px; margin-bottom: 10px;
} }
#tactic_view {
display: flex;
}
#tactic_view .tactical_group_left_column:first-child {
margin-right: 12px;
}
#tactic_view > .tactical_group_right_column {
margin-left: 5px;
}
#tactic_view .tactical_group_left_columns {
display: flex;
}
@media (max-width: 1380px) {
#tactic_view .tactical_group_left_columns {
width: 100%;
}
.tactical_group_left_column {
width: 50%;
}
.tactical_group_right_column {
width: 100%;
}
#tactic_view {
flex-wrap: wrap;
}
}