Changed size for modal window for module graph- #4234
This commit is contained in:
parent
ce1231eae6
commit
ea9540ddce
|
@ -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> ';
|
||||
}
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue