Merge branch 'ent-4234-Ventana-popup-que-muestra-graficas-no-tiene-en-cuenta-los-unknown-y-no-cabe' into 'develop'

Changed size for modal window for module graph- #4234

See merge request artica/pandorafms!2536
This commit is contained in:
Alejandro Fraguas 2019-06-26 13:43:57 +02:00
commit cda9cd6fe1
2 changed files with 30 additions and 1 deletions

View File

@ -1134,7 +1134,7 @@ if (check_login()) {
urlencode(
base64_encode($module['nombre'])
)
).'&refresh='.SECONDS_10MINUTES.'&'."draw_events=$draw_events', 'day_".$win_handle."', 1000, 650)";
).'&refresh='.SECONDS_10MINUTES.'&'."draw_events=$draw_events', 'day_".$win_handle."', 1000, 700)";
if (!is_snapshot_data($module['datos'])) {
$data[8] .= '<a href="javascript:'.$link.'">'.html_print_image('images/chart_curve.png', true, ['border' => '0', 'alt' => '']).'</a> &nbsp;&nbsp;';
}

View File

@ -5790,3 +5790,32 @@ div#status_pie {
align-items: center;
grid-template-columns: 50px auto;
}
/* Table for show more info in events and config menu in modules graphs. (This class exists in events.css too) */
.table_modal_alternate {
border-spacing: 0px;
text-align: left;
}
table.table_modal_alternate tr:nth-child(odd) td {
background-color: #ffffff;
}
table.table_modal_alternate tr:nth-child(even) td {
background-color: #f9f9f9;
border-top: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
}
table.table_modal_alternate tr td {
height: 33px;
max-height: 33px;
min-height: 33px;
}
table.table_modal_alternate tr td:first-child {
width: 35%;
font-weight: bold;
padding-left: 20px;
}
/* END - Table for show more info in events and config menu in modules graphs */