minor style change - box
This commit is contained in:
parent
49dee1e2bc
commit
505229abe4
|
@ -2947,7 +2947,7 @@ function ui_toggle(
|
|||
}
|
||||
|
||||
// Link to toggle.
|
||||
$output = '<div class="white_table_graph">';
|
||||
$output = '<div class="box-shadow white_table_graph">';
|
||||
$output .= '<div class="white_table_graph_header" style="cursor: pointer;" id="tgl_ctrl_'.$uniqid.'">'.html_print_image(
|
||||
$original,
|
||||
true,
|
||||
|
|
|
@ -462,6 +462,9 @@ select:-internal-list-box {
|
|||
.no-margin {
|
||||
margin: 0;
|
||||
}
|
||||
.box-shadow {
|
||||
box-shadow: 0px 0px 15px -4px #dadada;
|
||||
}
|
||||
|
||||
div#page {
|
||||
background: #fbfbfb;
|
||||
|
@ -5838,11 +5841,11 @@ div#bullets_modules div {
|
|||
}
|
||||
|
||||
.agent_details_col_left {
|
||||
width: 35%;
|
||||
width: 40%;
|
||||
min-width: 300px;
|
||||
}
|
||||
.agent_details_col_right {
|
||||
width: 64%;
|
||||
width: 59%;
|
||||
min-width: 480px;
|
||||
}
|
||||
|
||||
|
@ -5927,6 +5930,7 @@ div#status_pie {
|
|||
.agent_details_info {
|
||||
max-width: 45%;
|
||||
overflow: hidden;
|
||||
min-width: 220px;
|
||||
}
|
||||
.agent_details_info span {
|
||||
text-overflow: ellipsis;
|
||||
|
|
|
@ -511,7 +511,7 @@ $access_agent = db_get_value_sql(
|
|||
);
|
||||
|
||||
if ($config['agentaccess'] && $access_agent > 0) {
|
||||
$table_access_rate = '<div class="white_table_graph" id="table_access_rate">
|
||||
$table_access_rate = '<div class="box-shadow white_table_graph" id="table_access_rate">
|
||||
<div class="white_table_graph_header">'.html_print_image(
|
||||
'images/arrow_down_green.png',
|
||||
true
|
||||
|
@ -810,7 +810,7 @@ if ($config['agentaccess'] && $access_agent > 0) {
|
|||
$extra_class = '';
|
||||
}
|
||||
|
||||
$table_events = '<div class="white_table_graph" id="table_events">
|
||||
$table_events = '<div class="box-shadow white_table_graph" id="table_events">
|
||||
<div class="white_table_graph_header">'.html_print_image(
|
||||
'images/arrow_down_green.png',
|
||||
true
|
||||
|
@ -838,8 +838,8 @@ $agent_info = empty($table_data->data) ? '' : html_print_table($table_data, true
|
|||
$agent_incidents = !isset($table_incident) ? '' : html_print_table($table_incident, true);
|
||||
|
||||
echo '<div id="agent_details_first_row">
|
||||
<div class="agent_details_col agent_details_col_left">'.$table_agent.'</div>
|
||||
<div class="agent_details_col agent_details_col_right">'.$agent_contact.'</div>
|
||||
<div class="box-shadow agent_details_col agent_details_col_left">'.$table_agent.'</div>
|
||||
<div class="box-shadow agent_details_col agent_details_col_right">'.$agent_contact.'</div>
|
||||
</div>'.$agent_info;
|
||||
|
||||
// Show both graphs, events and access rate.
|
||||
|
|
|
@ -163,7 +163,7 @@ print_form_filter_monitors(
|
|||
$status_hierachy_mode
|
||||
);
|
||||
|
||||
echo '<div class="white_table_graph_content" style="padding: 0;" id="module_list"></div>';
|
||||
echo '<div class="box-shadow white_table_graph_content" style="padding: 0;" id="module_list"></div>';
|
||||
|
||||
$html_toggle = ob_get_clean();
|
||||
|
||||
|
|
Loading…
Reference in New Issue