mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 08:14:38 +02:00
2009-02-05 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Hide actions and templates form. Removed unncessary check when there's no module set. * include/styles/ie.css: Added to repository. IE fixes. Added fixes for menu, because IE doesn't support hover in other elements than a. * include/styles/menu.css: Removed font-family property. * include/functions_db.php: Style correction. * index.php: Added IE CSS fixes if needed. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1429 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
7f109ca452
commit
939dc0e2d1
@ -1,3 +1,17 @@
|
|||||||
|
2009-02-05 Esteban Sanchez <estebans@artica.es>
|
||||||
|
|
||||||
|
* godmode/agentes/alert_manager.php: Hide actions and templates form.
|
||||||
|
Removed unncessary check when there's no module set.
|
||||||
|
|
||||||
|
* include/styles/ie.css: Added to repository. IE fixes. Added fixes
|
||||||
|
for menu, because IE doesn't support hover in other elements than a.
|
||||||
|
|
||||||
|
* include/styles/menu.css: Removed font-family property.
|
||||||
|
|
||||||
|
* include/functions_db.php: Style correction.
|
||||||
|
|
||||||
|
* index.php: Added IE CSS fixes if needed.
|
||||||
|
|
||||||
2009-02-05 Esteban Sanchez <estebans@artica.es>
|
2009-02-05 Esteban Sanchez <estebans@artica.es>
|
||||||
|
|
||||||
* operation/visual_console/render_view.php: Recoverd countdown when
|
* operation/visual_console/render_view.php: Recoverd countdown when
|
||||||
|
@ -254,16 +254,14 @@ foreach ($modules as $id_agent_module => $module) {
|
|||||||
$table->data = array ();
|
$table->data = array ();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($module)){
|
|
||||||
|
|
||||||
/* This hidden value is used in Javascript. It's a workaraound for IE because
|
/* This hidden value is used in Javascript. It's a workaraound for IE because
|
||||||
it doesn't allow input elements creation. */
|
it doesn't allow input elements creation. */
|
||||||
print_input_hidden ('add_action', 1);
|
print_input_hidden ('add_action', 1);
|
||||||
print_input_hidden ('id_alert_module', 0);
|
print_input_hidden ('id_alert_module', 0);
|
||||||
|
|
||||||
echo '<form class="add_alert_form" method="post" class="invisible"
|
echo '<form class="add_alert_form invisible" method="post"
|
||||||
action="index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&tab=alert&id_agente='.
|
action="index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&tab=alert&id_agente='.
|
||||||
$module['id_agente'].'">';
|
$id_agente.'">';
|
||||||
echo '<div style="float:left">';
|
echo '<div style="float:left">';
|
||||||
print_label (__('Template'), 'template');
|
print_label (__('Template'), 'template');
|
||||||
$templates = get_alert_templates ();
|
$templates = get_alert_templates ();
|
||||||
@ -291,7 +289,6 @@ if (isset($module)){
|
|||||||
print_input_hidden ('id_agent_module', 0);
|
print_input_hidden ('id_agent_module', 0);
|
||||||
print_input_hidden ('create_alert', 1);
|
print_input_hidden ('create_alert', 1);
|
||||||
echo '</div></form>';
|
echo '</div></form>';
|
||||||
}
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<link rel="stylesheet" href="include/styles/cluetip.css" type="text/css" />
|
<link rel="stylesheet" href="include/styles/cluetip.css" type="text/css" />
|
||||||
|
12
pandora_console/include/styles/ie.css
Normal file
12
pandora_console/include/styles/ie.css
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
.title .toggle {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
.title .toggle {
|
||||||
|
background: transparent url(images/toggle.gif) no-repeat scroll !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title a {
|
||||||
|
clear: none;
|
||||||
|
zoom: 100%;
|
||||||
|
padding: 1;
|
||||||
|
}
|
@ -41,7 +41,6 @@ li.not_selected a {
|
|||||||
background: #E9F3D2;
|
background: #E9F3D2;
|
||||||
}
|
}
|
||||||
.menu a {
|
.menu a {
|
||||||
font-family: "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;
|
|
||||||
color: #000000;
|
color: #000000;
|
||||||
display:block; /* This makes it so that the whole li is clickable */
|
display:block; /* This makes it so that the whole li is clickable */
|
||||||
text-decoration:none;
|
text-decoration:none;
|
||||||
|
@ -143,6 +143,9 @@ echo '<title>Pandora FMS - '.__('the Flexible Monitoring System').'</title>
|
|||||||
<meta name="robots" content="index, follow" />
|
<meta name="robots" content="index, follow" />
|
||||||
<link rel="icon" href="images/pandora.ico" type="image/ico" />
|
<link rel="icon" href="images/pandora.ico" type="image/ico" />
|
||||||
<link rel="stylesheet" href="include/styles/'.$config["style"].'.css" type="text/css" />
|
<link rel="stylesheet" href="include/styles/'.$config["style"].'.css" type="text/css" />
|
||||||
|
<!--[if gte IE 6]>
|
||||||
|
<link rel="stylesheet" href="include/styles/ie.css" type="text/css"/>
|
||||||
|
<![endif]-->
|
||||||
<script type="text/javascript" src="include/javascript/jquery.js"></script>
|
<script type="text/javascript" src="include/javascript/jquery.js"></script>
|
||||||
<script type="text/javascript" src="include/javascript/wz_jsgraphics.js"></script>
|
<script type="text/javascript" src="include/javascript/wz_jsgraphics.js"></script>
|
||||||
<script type="text/javascript" src="include/javascript/pandora.js"></script>
|
<script type="text/javascript" src="include/javascript/pandora.js"></script>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user