Changed size for modal window for module graph- #4234

This commit is contained in:
Tatiana Llorente 2019-06-25 09:19:47 +02:00
parent ce1231eae6
commit ea9540ddce
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

@ -5803,3 +5803,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 */