2007-02-23 10:08:26 +01:00
|
|
|
/*
|
2009-03-02 Esteban Sanchez <estebans@artica.es>
* include/functions_menu.php: Added to repository. Functions for menu.
* operation/menu.php, godmode/menu.php: Added class to menu due to
changes in print_menu().
* general/main_menu.php: temp_print_menu() moved to functions_menu.php
* include/functions_themes.php: Added to repository. Implement
functions relative to themes (only CSS themes list at this moment).
* include/styles/pandora.css, include/styles/pandora_black.css,
include/styles/pandora_minimal.css, include/styles/pandora_red.css:
Added author, name and description comments to adopt to new
get_themes() interface.
* include/styles/pandora_width.css: Improved and make lighter by
simply rewrite some classes.
* include/functions.php: Added is_ajax().
* godmode/agentes/module_manager_editor.php,
godmode/alerts/alert_actions.php, godmode/alerts/alert_commands.php,
godmode/alerts/alert_compounds.php, godmode/alerts/alert_list.php,
godmode/alerts/alert_templates.php, godmode/groups/group_list.php,
godmode/reporting/map_builder.php,
godmode/reporting/reporting_builder.php,
operation/agentes/estado_agente.php, operation/agentes/ver_agente.php,
operation/events/events.php, operation/messages/message.php: Use
is_ajax()
* godmode/setup/setup.php: Use enterprise_include() instead of manual
checking. Use get_css_themes() to show the theme list.
* include/styles/common.css: Added to repository. Minimal styles to
make pandora works and common with all the CSS themes.
* include/functions_ui.php: Added common.css file.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1496 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-03-02 14:43:15 +01:00
|
|
|
|
|
|
|
Author: The Pandora FMS team
|
|
|
|
Name: Default theme
|
|
|
|
Description: The default Pandora FMS theme layout
|
|
|
|
|
2010-05-24 18:17:21 +02:00
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
|
|
// ==========================================================
|
2011-07-06 13:57:27 +02:00
|
|
|
// Copyright (c) 2004-2011 Artica Soluciones Tecnológicas S.L
|
2009-06-08 20:26:14 +02:00
|
|
|
|
2007-03-02 18:56:07 +01:00
|
|
|
// This program is free software; you can redistribute it and/or
|
2007-02-23 10:08:26 +01:00
|
|
|
// modify it under the terms of the GNU General Public License
|
2007-03-12 18:58:52 +01:00
|
|
|
// as published by the Free Software Foundation; version 2
|
2009-06-08 20:26:14 +02:00
|
|
|
|
2007-02-23 10:08:26 +01:00
|
|
|
// This program is distributed in the hope that it will be useful,
|
2007-03-02 18:56:07 +01:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2007-02-23 10:08:26 +01:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2007-03-02 18:56:07 +01:00
|
|
|
// along with this program; if not, write to the Free Software
|
2007-02-23 10:08:26 +01:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
2009-06-08 20:26:14 +02:00
|
|
|
|
2007-02-23 10:08:26 +01:00
|
|
|
* {
|
2007-05-24 23:06:42 +02:00
|
|
|
font-family: verdana, sans-serif;
|
|
|
|
font-size: 8pt;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2010-01-18 15:23:30 +01:00
|
|
|
svg * {
|
|
|
|
font-size: 11pt;
|
|
|
|
}
|
2007-05-18 11:29:54 +02:00
|
|
|
body {
|
2007-05-27 04:55:55 +02:00
|
|
|
text-align: center;
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #fafafa;
|
2012-04-16 13:24:47 +02:00
|
|
|
margin: 0 auto;
|
2009-05-29 11:28:48 +02:00
|
|
|
}
|
2011-06-16 21:26:45 +02:00
|
|
|
|
2012-04-30 21:22:07 +02:00
|
|
|
div#page {
|
|
|
|
background: #fafafa;
|
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#main {
|
|
|
|
background: #fafafa;
|
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-27 19:00:55 +02:00
|
|
|
#login_body {
|
|
|
|
/* Set rules to fill background */
|
|
|
|
min-height: 100%;
|
|
|
|
min-width: 1024px;
|
|
|
|
|
|
|
|
/* Set up proportionate scaling */
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
|
|
|
|
/* Set up positioning */
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: -999;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 1024px) { /* Specific to this particular image */
|
|
|
|
#login_body {
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -512px; /* 50% */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-29 11:28:48 +02:00
|
|
|
body.pure {
|
|
|
|
background-color: #fff;
|
2007-05-18 11:29:54 +02:00
|
|
|
}
|
2007-05-07 17:32:03 +02:00
|
|
|
input, textarea {
|
2007-05-18 14:56:05 +02:00
|
|
|
border: 1px solid #ddd;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2009-04-09 23:06:17 +02:00
|
|
|
|
2007-04-18 11:58:26 +02:00
|
|
|
textarea {
|
2007-05-07 17:32:03 +02:00
|
|
|
padding: 5px;
|
2009-03-24 Esteban Sanchez <estebans@artica.es>
* general/pandora_help.php: Added support for enterprise help files.
* include/javascript/pandora.js: Renamed pandora_help() to
open_help().
* include/functions_ui.php: Renamed event function on
print_help_icon(). Removed deprecated pandora_help().
* godmode/agentes/module_manager.php: Added enterprise hooks.
* godmode/agentes/module_manager_editor.php: Added categories
construction here. Added enterprise hooks.
* godmode/agentes/module_manager_editor_common.php: Replaced
deprecated pandora_help() with print_help_icon(). Moved categories
construction to module_manager_editor.
* include/config_process.php: Updated build version.
* include/styles/pandora.css: Fixed textarea height.
* godmode/agentes/manage_config_remote.php,
godmode/agentes/massive_config.php,
godmode/agentes/massive_edit_modules.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_prediction.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/agentes/planned_downtime.php, godmode/alerts/alert_list.php,
godmode/alerts/configure_alert_compound.php,
godmode/modules/manage_network_components_form_network.php,
godmode/modules/manage_network_components_form_wmi.php,
godmode/reporting/map_builder.php,
godmode/servers/manage_export_form.php,
godmode/servers/manage_recontask_form.php, godmode/servers/plugin.php,
godmode/setup/setup.php, operation/agentes/alerts_status.php,
operation/agentes/tactical.php,
godmode/agentes/agent_manager.php: Replaced deprecated pandora_help()
with print_help_icon().
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1557 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-03-24 16:38:54 +01:00
|
|
|
min-height: 100px;
|
2009-04-13 Esteban Sanchez <estebans@artica.es>
* general/footer.php: Removed Firefox icon. Style correction.
* godmode/agentes/agent_manager.php: Replaced > with ». Style
correction when setting bold attributes.
* godmode/agentes/manage_config_remote.php,
godmode/agentes/modificar_agente.php, godmode/agentes/module_manager.php,
godmode/alerts/alert_list.php, godmode/db/db_audit.php,
godmode/db/db_event.php, godmode/db/db_info.php, godmode/db/db_main.php,
godmode/db/db_purge.php, godmode/db/db_refine.php,
godmode/groups/configure_group.php, godmode/groups/group_list.php,
godmode/modules/manage_nc_groups.php,
godmode/modules/manage_network_components.php,
godmode/modules/manage_network_templates.php,
godmode/modules/manage_network_templates_form.php,
godmode/modules/module_list.php, godmode/profiles/profile_list.php,
godmode/reporting/graph_builder.php, godmode/reporting/map_builder.php,
godmode/reporting/reporting_builder.php, godmode/servers/manage_export.php,
godmode/servers/manage_export_form.php,
godmode/servers/manage_recontask.php,
godmode/servers/manage_recontask_form.php,
godmode/servers/modificar_server.php, godmode/setup/setup_visuals.php,
godmode/setup/links.php, godmode/setup/news.php,
godmode/snmpconsole/snmp_alert.php, godmode/users/configure_user.php,
godmode/users/user_list.php, operation/agentes/alerts_status.php,
operation/agentes/estado_generalagente.php,
operation/agentes/estado_agente.php, operation/agentes/estado_grupo.php,
operation/agentes/estado_ultimopaquete.php,
operation/agentes/exportdata.php, operation/agentes/networkmap.php,
operation/agentes/status_monitor.php, operation/agentes/tactical.php,
operation/events/events.php, operation/incidents/incident.php,
operation/incidents/incident_detail.php,
operation/incidents/incident_statistics.php,
operation/messages/message.php, operation/reporting/custom_reporting.php,
operation/reporting/graph_viewer.php,
operation/reporting/reporting_viewer.php, operation/servers/view_server.php,
operation/users/user.php, operation/users/user_edit.php,
operation/users/user_statistics.php, operation/visual_console/index.php,
godmode/agentes/agent_template.php: Replaced > with »
* operation/agentes/datos_agente.php: Return instead of exit
* include/javascript/jquery.pandora.controls.js: Added pandoraSelectOS
control to preview the OS icon on a select.
* include/functions_reports.php: Fixed a bug on delete_report() that
returns error when the report has no content.
* include/functions_ui.php: Removed border attribute on print_os_icon().
Some fixes to meta refresh element on process_page_head(). Fixed
format_filesize() when length is zero.
* godmode/menu.php: Replaced link to file manager. Added enterprise hook.
* godmode/setup/file_manager.php: Renamed from obfuscated name filemgr.php
* include/styles/pandora.css: Textarea width reduced to 99%
* godmode/setup/setup.php: Added get_os_icon AJAX operation.
* images/mimetypes/, images/mimetypes/zip.png, images/mimetypes/image.png,
images/mimetypes/unknown.png, images/mimetypes/directory.png: Added to
repository. Mime type icons.
* extras/pandoradb_migrate_v2.x_to_v3.0.sql: Removed date comments.
* include/functions_filemanager.php: Added to repository. Minimal API for
file manager system.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1608 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-04-13 11:50:56 +02:00
|
|
|
width: 99%;
|
2007-05-07 17:32:03 +02:00
|
|
|
}
|
2008-06-09 15:17:29 +02:00
|
|
|
textarea.conf_editor {
|
|
|
|
padding: 5px;
|
2009-01-26 17:48:22 +01:00
|
|
|
width: 650px;
|
|
|
|
height: 350px;
|
2008-06-09 15:17:29 +02:00
|
|
|
}
|
2009-05-07 16:44:26 +02:00
|
|
|
textarea.conf_error {
|
|
|
|
background-image: url(../../images/err.png);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: top right;
|
|
|
|
}
|
2007-05-07 17:32:03 +02:00
|
|
|
input {
|
|
|
|
padding: 2px 3px 4px 3px;
|
2007-04-18 11:58:26 +02:00
|
|
|
}
|
2009-01-26 17:48:22 +01:00
|
|
|
input.button {
|
2008-12-19 22:45:20 +01:00
|
|
|
font-family: Arial,Sans-serif;
|
2007-05-07 17:32:03 +02:00
|
|
|
border: 1px solid #ccc;
|
2009-01-26 17:48:22 +01:00
|
|
|
background: #fff;
|
2007-04-18 11:58:26 +02:00
|
|
|
padding: 2px 3px;
|
|
|
|
margin: 10px 15px;
|
|
|
|
}
|
|
|
|
select {
|
2007-05-18 14:56:05 +02:00
|
|
|
padding: 0px;
|
|
|
|
border:1px solid #ddd;
|
2007-04-18 11:58:26 +02:00
|
|
|
}
|
|
|
|
checkbox {
|
|
|
|
padding: 4px;
|
|
|
|
border:1px solid #eee;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2007-06-07 19:46:38 +02:00
|
|
|
h1, h2, h3, h4 {
|
2008-12-19 22:45:20 +01:00
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1em;
|
|
|
|
font-family: Arial, Sans-serif;
|
2007-05-18 14:56:05 +02:00
|
|
|
text-transform: uppercase;
|
2009-12-13 20:26:50 +01:00
|
|
|
color: #3f4e2f;
|
2007-06-07 19:46:38 +02:00
|
|
|
padding-bottom: 4px;
|
2007-05-24 22:03:05 +02:00
|
|
|
padding-top: 7px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
h1 {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
h2 {
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
2007-05-27 04:55:55 +02:00
|
|
|
h3 {
|
2007-06-07 19:46:38 +02:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
h4 {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
padding-bottom: 0px;
|
|
|
|
padding-top: 5px;
|
2007-05-27 04:55:55 +02:00
|
|
|
font-size: 13px;
|
2007-06-07 19:46:38 +02:00
|
|
|
color: #000;
|
2011-07-06 13:57:27 +02:00
|
|
|
text-transform: none;
|
2007-05-27 04:55:55 +02:00
|
|
|
}
|
2007-02-23 10:08:26 +01:00
|
|
|
a {
|
2009-08-19 21:38:29 +02:00
|
|
|
color: #000;
|
2007-02-23 10:08:26 +01:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
color: #003a3a;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2007-05-18 14:56:05 +02:00
|
|
|
a.white_bold {
|
2007-05-27 04:55:55 +02:00
|
|
|
color: #eee;
|
2007-05-18 14:56:05 +02:00
|
|
|
text-decoration: none;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
a.white {
|
2007-05-27 04:55:55 +02:00
|
|
|
color: #eee;
|
2007-05-21 12:50:03 +02:00
|
|
|
text-decoration: none;
|
2007-05-18 14:56:05 +02:00
|
|
|
}
|
2007-02-23 10:08:26 +01:00
|
|
|
p.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
h1#log {
|
2007-05-27 04:55:55 +02:00
|
|
|
font-size: 18px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
color: #000;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2007-05-27 04:55:55 +02:00
|
|
|
h1#log_f {
|
2009-11-03 12:13:47 +01:00
|
|
|
color: #c00;
|
|
|
|
border-bottom: 1px solid #c00;
|
2007-02-23 10:08:26 +01:00
|
|
|
padding-bottom: 3px;
|
|
|
|
}
|
|
|
|
div#login {
|
2007-05-27 04:55:55 +02:00
|
|
|
margin: 0 auto;
|
2012-03-27 19:00:55 +02:00
|
|
|
padding-top: 63px;
|
|
|
|
width: 657px;
|
2007-05-27 04:55:55 +02:00
|
|
|
border-left: solid 1px #000;
|
|
|
|
border-top: solid 1px #000;
|
|
|
|
border-bottom: solid 2px #000;
|
2009-01-26 17:48:22 +01:00
|
|
|
border-right: solid 2px #000;
|
2012-04-16 13:24:47 +02:00
|
|
|
font-size: 12px !important;
|
2007-05-27 04:55:55 +02:00
|
|
|
}
|
|
|
|
div#login_in, #login_f {
|
2012-03-27 19:00:55 +02:00
|
|
|
margin: 0 auto 0 140px;
|
2007-05-27 04:55:55 +02:00
|
|
|
width: 400px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2011-07-06 19:16:16 +02:00
|
|
|
div#error_login {
|
2012-04-12 11:26:51 +02:00
|
|
|
#margin: 0 auto;
|
|
|
|
#margin-top: -10px;
|
|
|
|
text-align: center;
|
2012-04-26 22:46:38 +02:00
|
|
|
margin-top: 5px;
|
2012-04-12 11:26:51 +02:00
|
|
|
margin-left: 5px;
|
2012-04-26 22:46:38 +02:00
|
|
|
width: 75%;
|
2012-04-16 13:24:47 +02:00
|
|
|
float: right;
|
|
|
|
text-align: left;
|
|
|
|
top: 100px;
|
2012-04-12 11:26:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div#error_login_icon {
|
|
|
|
#margin: 0 auto;
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-right: 7px;
|
2012-03-27 19:00:55 +02:00
|
|
|
text-align: center;
|
2012-04-12 11:26:51 +02:00
|
|
|
#margin-left: 20px;
|
|
|
|
width: 20%;
|
|
|
|
float: right;
|
2011-07-06 19:16:16 +02:00
|
|
|
}
|
2012-04-12 11:26:51 +02:00
|
|
|
|
2007-02-23 10:08:26 +01:00
|
|
|
div#login_f {
|
2007-05-27 04:55:55 +02:00
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 25px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
div#noaccess {
|
|
|
|
width: 350px;
|
|
|
|
padding-left: 40px;
|
|
|
|
}
|
|
|
|
div#activity{
|
|
|
|
padding-top: 18px;
|
|
|
|
padding-bottom: 18px;
|
|
|
|
}
|
|
|
|
div#noa {
|
|
|
|
float: right;
|
|
|
|
padding-right: 50px;
|
|
|
|
margin-top: 25px;
|
|
|
|
}
|
2007-05-21 12:50:03 +02:00
|
|
|
div#db_f {
|
|
|
|
text-align: justify;
|
|
|
|
margin: auto;
|
|
|
|
padding: 0.5em;
|
|
|
|
width: 55em;
|
|
|
|
margin-top: 3em;
|
|
|
|
}
|
2007-02-23 10:08:26 +01:00
|
|
|
div#db_ftxt {
|
|
|
|
float: right;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
2007-05-27 04:55:55 +02:00
|
|
|
div#container {
|
|
|
|
margin: 0 auto;
|
2008-07-03 17:13:14 +02:00
|
|
|
width: 960px;
|
2007-05-27 04:55:55 +02:00
|
|
|
text-align: left;
|
2012-04-16 13:24:47 +02:00
|
|
|
#border-left: solid 2px #000;
|
|
|
|
#border-right: solid 2px #000;
|
|
|
|
#border-top: solid 2px #000;
|
|
|
|
#margin-top: 5px;
|
2008-10-09 18:56:31 +02:00
|
|
|
background: #fff;
|
2007-05-27 04:55:55 +02:00
|
|
|
}
|
2007-05-18 11:29:54 +02:00
|
|
|
div#page {
|
2008-07-03 17:13:14 +02:00
|
|
|
width: 960px;
|
2007-05-18 11:29:54 +02:00
|
|
|
clear: both;
|
2012-04-30 21:22:07 +02:00
|
|
|
border-bottom: solid 5px #567953;
|
|
|
|
border-top: solid 5px #567953;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2007-05-18 11:29:54 +02:00
|
|
|
div#main {
|
2009-04-09 23:06:17 +02:00
|
|
|
width: 785px;
|
2007-08-06 11:19:22 +02:00
|
|
|
min-height: 500px;
|
2008-07-03 17:13:14 +02:00
|
|
|
float: right;
|
2007-05-18 14:56:05 +02:00
|
|
|
padding-left: 0px;
|
2007-05-18 11:29:54 +02:00
|
|
|
padding-top: 0px;
|
|
|
|
padding-bottom: 20px;
|
2008-07-03 17:13:14 +02:00
|
|
|
margin-bottom: 25px;
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-left: 0px;
|
|
|
|
margin-right: 0px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2011-06-29 12:33:27 +02:00
|
|
|
div#main_help {
|
2011-07-06 19:16:16 +02:00
|
|
|
width: 100%;
|
2011-06-29 12:33:27 +02:00
|
|
|
padding-left: 0px;
|
|
|
|
padding-top: 0px;
|
|
|
|
background-color: #fefefe;
|
|
|
|
background-image: url(../../images/backgrounds/background4.jpg);
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-left: 0px;
|
|
|
|
margin-right: 0px;
|
|
|
|
}
|
2007-05-18 11:29:54 +02:00
|
|
|
div#menu {
|
2009-04-09 23:06:17 +02:00
|
|
|
width: 165px;
|
2007-02-23 10:08:26 +01:00
|
|
|
float: left;
|
|
|
|
}
|
2009-05-13 19:00:58 +02:00
|
|
|
|
2007-05-18 11:29:54 +02:00
|
|
|
div#head {
|
2007-05-24 23:06:42 +02:00
|
|
|
font-size: 8pt;
|
2008-07-03 17:13:14 +02:00
|
|
|
width: 960px;
|
2011-08-10 13:08:57 +02:00
|
|
|
height: 62px;
|
2009-08-06 20:55:54 +02:00
|
|
|
padding-top: 1px;
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #274C00;
|
2007-05-07 17:32:03 +02:00
|
|
|
}
|
2009-05-13 19:00:58 +02:00
|
|
|
|
2007-05-18 11:29:54 +02:00
|
|
|
div#foot {
|
2007-05-24 23:06:42 +02:00
|
|
|
font-size: 7pt;
|
2008-12-19 22:45:20 +01:00
|
|
|
border-top: solid 2px #000;
|
2007-05-18 14:56:05 +02:00
|
|
|
padding-top: 5px;
|
2007-05-21 12:50:03 +02:00
|
|
|
padding-bottom: 5px;
|
2007-05-07 17:32:03 +02:00
|
|
|
text-align: center;
|
2007-05-18 14:56:05 +02:00
|
|
|
background: #000;
|
2008-07-03 17:13:14 +02:00
|
|
|
width: 960px;
|
2007-05-07 17:32:03 +02:00
|
|
|
clear: both;
|
|
|
|
}
|
2007-02-23 10:08:26 +01:00
|
|
|
#ver {
|
|
|
|
margin-bottom: 25px;
|
|
|
|
}
|
2012-03-27 19:00:55 +02:00
|
|
|
|
|
|
|
#bottom_logo {
|
|
|
|
bottom: 0;
|
|
|
|
height: 70px;
|
|
|
|
margin: 0 auto 0 44%;
|
|
|
|
overflow: hidden;
|
|
|
|
position: fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ver_num {
|
|
|
|
bottom: 0;
|
|
|
|
height: 20px;
|
|
|
|
right: 0;
|
|
|
|
padding-right: 20px;
|
|
|
|
overflow: hidden;
|
|
|
|
position: fixed;
|
|
|
|
color: #696969
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
label {
|
|
|
|
display: block;
|
|
|
|
padding-top: 4px;
|
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
|
|
|
font-weight: bold;
|
2009-02-20 13:10:50 +01:00
|
|
|
text-align: left;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
th > label {
|
|
|
|
padding-top: 7px;
|
|
|
|
}
|
2012-04-12 14:38:42 +02:00
|
|
|
input.chk {
|
|
|
|
margin-right: 0px;
|
2007-02-23 10:08:26 +01:00
|
|
|
border: 0px none;
|
|
|
|
height: 14px;
|
|
|
|
}
|
|
|
|
input.datos {
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
}
|
|
|
|
input.datos_readonly {
|
|
|
|
background-color: #050505;
|
|
|
|
}
|
|
|
|
input.login {
|
2012-03-27 19:00:55 +02:00
|
|
|
border: 0px none;
|
2012-05-07 16:37:28 +02:00
|
|
|
background-color: #ebebeb !important;
|
2012-03-27 19:00:55 +02:00
|
|
|
margin: 0px 0 8px 20px;
|
|
|
|
width: 135px;
|
|
|
|
height: 18px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2012-03-27 19:00:55 +02:00
|
|
|
|
|
|
|
/* FF hack for login inputs */
|
|
|
|
@-moz-document url-prefix() {
|
|
|
|
input.login{
|
2012-05-07 16:54:23 +02:00
|
|
|
margin: -2px 0 8px 20px !important;
|
2012-03-27 19:00:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-23 10:08:26 +01:00
|
|
|
input.sub {
|
|
|
|
font-weight: bold;
|
|
|
|
border-bottom-color: #708090;
|
|
|
|
border-right-color: #708090;
|
2009-01-26 17:48:22 +01:00
|
|
|
/* These borders haven't made it yet in a valid standard
|
|
|
|
First one is for Mozilla, second for Webkit (Safari, Konqueror), third one for IE7+ and valid CSS3.
|
|
|
|
Percentage values are invalid here but .4em seems big enough */
|
|
|
|
-moz-border-radius: .4em;
|
|
|
|
-webkit-border-radius: .4em;
|
2009-03-17 16:15:55 +01:00
|
|
|
border-radius: .4em;
|
2007-05-24 23:06:42 +02:00
|
|
|
font-size: 8pt;
|
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
|
|
|
background-color: #e5e5e5;
|
2009-03-17 16:15:55 +01:00
|
|
|
color: #000;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2010-02-10 11:16:51 +01:00
|
|
|
|
|
|
|
input.sub[disabled] {
|
|
|
|
color: #aaa;
|
|
|
|
}
|
|
|
|
|
2011-05-13 13:14:25 +02:00
|
|
|
input.next, input.upd, input.ok, input.wand, input.delete, input.cog, input.target, input.search,
|
2010-03-31 11:13:54 +02:00
|
|
|
input.copy, input.add, input.graph, input.percentile, input.binary,
|
2010-06-06 23:01:10 +02:00
|
|
|
input.camera, input.config, input.cancel {
|
2007-04-19 20:50:07 +02:00
|
|
|
padding-right: 21px;
|
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
|
|
|
}
|
2012-03-05 Miguel de Dios <miguel.dedios@artica.es>
* extensions/update_manager/main.php, general/shortcut_bar.php,
godmode/reporting/reporting_builder.item_editor.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.preview.php, include/functions_api.php,
include/functions_html.php, include/htmlawed.php, include/pchart_graph.php,
operation/events/events_list.php, operation/netflow/nf_live_view.php:
cleaned source code style.
* godmode/menu.php, godmode/agentes/manage_config_remote.php: removed the
enterprise feature that have been wrong for years.
* general/header.php: changed to load the jquery-ui and jquery javascript
library to last version.
* extensions/insert_data.php, extensions/snmp_explorer.php,
godmode/agentes/agent_manager.php, include/ajax/agent.php,
include/javascript/pandora.js, operation/agentes/exportdata.php,
operation/events/events.php: changed the unknow plugin autocomplete for
the autocomple from jquery-ui.
* include/functions_ui.php: cleaned source code style and into the function
"ui_process_page_head" added the blacklist hardwrote for to use old jquery.
* include/styles/jquery-ui-1.8.17.custom.css,
include/javascript/jquery-1.7.1.min.js,
include/javascript/jquery.jquery-ui-1.8.17.custom.min.js: added the last
version of Jquery and Jquery-ui.
Merge from the branch "pandora_4.0"
* godmode/reporting/visual_console_builder.constans.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/javascript/pandora_visual_console.js: changed the unknow
plugin autocomplete for the autocomple from jquery-ui and added function to
paint a Bubble Chart (http://en.wikipedia.org/wiki/Bubble_chart) with the
name "progress_bubble".
* images/percentile_item.disabled.png, images/percentile_item.png: added
images for button of percentile item (new item in visual map).
* include/styles/pandora.css: added the style for the new button percentile
item.
* include/functions_graph.php, include/graphs/fgraph.php,
include/graphs/functions_gd.php: cleaned source code style, and added the
params to set text and color in the function "progress_bar" and added
function to paint a Bubble Chart (http://en.wikipedia.org/wiki/Bubble_chart)
with the name "progress_bubble".
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5693 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-03-05 18:56:56 +01:00
|
|
|
input.delete_min, input.graph_min, input.percentile_min, input.percentile_item_min, input.binary_min,
|
2012-02-21 15:05:57 +01:00
|
|
|
input.camera_min, input.config_min, input.label_min, input.icon_min, input.grid_min, input.save {
|
2010-07-26 Miguel de Dios <miguel.dedios@artica.es>
* images/mimetypes/text.png: added lost image file in previous commits about
collections.
*images/tag_red.disabled.png, images/cross.disabled.png,
images/chart_curve.disabled.png, images/config.disabled.png,
images/chart_bar.disabled.png, images/photo.disabled.png,
images/camera.disabled.png, images/binary.disabled.png: added image files
for the new palete buttons (when it are disabled) in visual console editor.
* include/styles/pandora.css: added the styles for the new buttons of
visual console editor (label and icon), and some changes for new style for
buttons of the palete in this page.
* include/functions_html.php: in function "print_button" added new
parameter $imageButton to set the button as image button, by default is
false.
* include/ajax/visual_console_builder.ajax.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php: change the buttons
palete for a palete with more small buttons as icon buttons, added new items
for visual map (icon and label). And fixed the dinamic change label color
for any elements.
* include/functions_visual_map.php: added the new items (label and icon)
and cleaned the source code.
Pending task: #3019641
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3061 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-07-26 13:56:04 +02:00
|
|
|
padding-right: 25px;
|
|
|
|
}
|
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
|
|
|
input.next {
|
2011-07-13 16:28:55 +02:00
|
|
|
background: #e5e5e5 url(../../images/go.png) no-repeat 98% 2px;
|
2007-04-02 Raul Mateos <raulofpandora@gmail.com>
* images/ok.gif: Deleted
* images/cross.png, go.png, ok.png, upd.png: Added new images
* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
old styles, not all.
* include/languages/language_en.php, language_es_es.php: Added text
for no recon task.
* godmode/*.php, operation/*.php, help/*.php: Changed some icons,
updated several buttons with new icons.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@410 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-04-02 19:17:27 +02:00
|
|
|
}
|
|
|
|
input.upd {
|
2011-07-13 16:28:55 +02:00
|
|
|
background: #e5e5e5 url(../../images/upd.png) no-repeat 98% 3px;
|
2007-04-19 20:50:07 +02:00
|
|
|
}
|
|
|
|
input.wand {
|
2011-07-13 16:28:55 +02:00
|
|
|
background: #e5e5e5 url(../../images/wand.png) no-repeat 98% 3px;
|
2007-04-02 Raul Mateos <raulofpandora@gmail.com>
* images/ok.gif: Deleted
* images/cross.png, go.png, ok.png, upd.png: Added new images
* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
old styles, not all.
* include/languages/language_en.php, language_es_es.php: Added text
for no recon task.
* godmode/*.php, operation/*.php, help/*.php: Changed some icons,
updated several buttons with new icons.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@410 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-04-02 19:17:27 +02:00
|
|
|
}
|
2007-05-28 21:15:44 +02:00
|
|
|
input.search {
|
2011-07-13 16:28:55 +02:00
|
|
|
background: #e5e5e5 url(../../images/zoom.png) no-repeat 98% 3px;
|
2007-05-28 21:15:44 +02:00
|
|
|
}
|
2007-06-06 19:48:08 +02:00
|
|
|
input.copy {
|
2011-07-13 16:28:55 +02:00
|
|
|
background: #e5e5e5 url(../../images/copy.png) no-repeat 98% 3px;
|
2007-06-06 19:48:08 +02:00
|
|
|
}
|
2007-06-17 17:06:36 +02:00
|
|
|
input.ok {
|
2011-07-13 16:28:55 +02:00
|
|
|
background: #e5e5e5 url(../../images/ok.png) no-repeat 98% 3px;
|
2007-06-17 17:06:36 +02:00
|
|
|
}
|
2009-01-16 11:55:29 +01:00
|
|
|
input.add {
|
2011-07-13 16:28:55 +02:00
|
|
|
background: #e5e5e5 url(../../images/add.png) no-repeat 98% 3px;
|
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
|
|
|
}
|
2010-07-26 Miguel de Dios <miguel.dedios@artica.es>
* images/mimetypes/text.png: added lost image file in previous commits about
collections.
*images/tag_red.disabled.png, images/cross.disabled.png,
images/chart_curve.disabled.png, images/config.disabled.png,
images/chart_bar.disabled.png, images/photo.disabled.png,
images/camera.disabled.png, images/binary.disabled.png: added image files
for the new palete buttons (when it are disabled) in visual console editor.
* include/styles/pandora.css: added the styles for the new buttons of
visual console editor (label and icon), and some changes for new style for
buttons of the palete in this page.
* include/functions_html.php: in function "print_button" added new
parameter $imageButton to set the button as image button, by default is
false.
* include/ajax/visual_console_builder.ajax.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php: change the buttons
palete for a palete with more small buttons as icon buttons, added new items
for visual map (icon and label). And fixed the dinamic change label color
for any elements.
* include/functions_visual_map.php: added the new items (label and icon)
and cleaned the source code.
Pending task: #3019641
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3061 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-07-26 13:56:04 +02:00
|
|
|
input.cancel {
|
2011-07-13 16:28:55 +02:00
|
|
|
background: #e5e5e5 url(../../images/cancel.png) no-repeat 98% 3px;
|
2010-07-26 Miguel de Dios <miguel.dedios@artica.es>
* images/mimetypes/text.png: added lost image file in previous commits about
collections.
*images/tag_red.disabled.png, images/cross.disabled.png,
images/chart_curve.disabled.png, images/config.disabled.png,
images/chart_bar.disabled.png, images/photo.disabled.png,
images/camera.disabled.png, images/binary.disabled.png: added image files
for the new palete buttons (when it are disabled) in visual console editor.
* include/styles/pandora.css: added the styles for the new buttons of
visual console editor (label and icon), and some changes for new style for
buttons of the palete in this page.
* include/functions_html.php: in function "print_button" added new
parameter $imageButton to set the button as image button, by default is
false.
* include/ajax/visual_console_builder.ajax.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php: change the buttons
palete for a palete with more small buttons as icon buttons, added new items
for visual map (icon and label). And fixed the dinamic change label color
for any elements.
* include/functions_visual_map.php: added the new items (label and icon)
and cleaned the source code.
Pending task: #3019641
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3061 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-07-26 13:56:04 +02:00
|
|
|
}
|
|
|
|
input.delete {
|
2011-07-13 16:28:55 +02:00
|
|
|
background: #e5e5e5 url(../../images/cross.png) no-repeat 98% 3px;
|
2010-07-26 Miguel de Dios <miguel.dedios@artica.es>
* images/mimetypes/text.png: added lost image file in previous commits about
collections.
*images/tag_red.disabled.png, images/cross.disabled.png,
images/chart_curve.disabled.png, images/config.disabled.png,
images/chart_bar.disabled.png, images/photo.disabled.png,
images/camera.disabled.png, images/binary.disabled.png: added image files
for the new palete buttons (when it are disabled) in visual console editor.
* include/styles/pandora.css: added the styles for the new buttons of
visual console editor (label and icon), and some changes for new style for
buttons of the palete in this page.
* include/functions_html.php: in function "print_button" added new
parameter $imageButton to set the button as image button, by default is
false.
* include/ajax/visual_console_builder.ajax.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php: change the buttons
palete for a palete with more small buttons as icon buttons, added new items
for visual map (icon and label). And fixed the dinamic change label color
for any elements.
* include/functions_visual_map.php: added the new items (label and icon)
and cleaned the source code.
Pending task: #3019641
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3061 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-07-26 13:56:04 +02:00
|
|
|
}
|
2011-05-13 13:14:25 +02:00
|
|
|
input.cog {
|
2011-07-13 16:28:55 +02:00
|
|
|
background: #e5e5e5 url(../../images/cog.png) no-repeat 98% 3px;
|
2011-05-13 13:14:25 +02:00
|
|
|
}
|
|
|
|
input.target {
|
2011-07-13 16:28:55 +02:00
|
|
|
background: #e5e5e5 url(../../images/target.png) no-repeat 98% 3px;
|
2011-05-13 13:14:25 +02:00
|
|
|
}
|
2010-03-31 11:13:54 +02:00
|
|
|
input.graph {
|
2011-07-13 16:28:55 +02:00
|
|
|
background: #e5e5e5 url(../../images/chart_curve.png) no-repeat 98% 3px;
|
2010-03-31 11:13:54 +02:00
|
|
|
}
|
|
|
|
input.percentile {
|
2011-07-13 16:28:55 +02:00
|
|
|
background: #e5e5e5 url(../../images/chart_bar.png) no-repeat 98% 3px;
|
2010-03-31 11:13:54 +02:00
|
|
|
}
|
|
|
|
input.binary {
|
2011-07-13 16:28:55 +02:00
|
|
|
background: #e5e5e5 url(../../images/binary.png) no-repeat 98% 3px;
|
2010-03-31 11:13:54 +02:00
|
|
|
}
|
|
|
|
input.camera {
|
2011-07-13 16:28:55 +02:00
|
|
|
background: #e5e5e5 url(../../images/camera.png) no-repeat 98% 3px;
|
2010-03-31 11:13:54 +02:00
|
|
|
}
|
|
|
|
input.config {
|
2011-07-13 16:28:55 +02:00
|
|
|
background: #e5e5e5 url(../../images/config.png) no-repeat 98% 3px;
|
2010-03-31 11:13:54 +02:00
|
|
|
}
|
2010-07-26 Miguel de Dios <miguel.dedios@artica.es>
* images/mimetypes/text.png: added lost image file in previous commits about
collections.
*images/tag_red.disabled.png, images/cross.disabled.png,
images/chart_curve.disabled.png, images/config.disabled.png,
images/chart_bar.disabled.png, images/photo.disabled.png,
images/camera.disabled.png, images/binary.disabled.png: added image files
for the new palete buttons (when it are disabled) in visual console editor.
* include/styles/pandora.css: added the styles for the new buttons of
visual console editor (label and icon), and some changes for new style for
buttons of the palete in this page.
* include/functions_html.php: in function "print_button" added new
parameter $imageButton to set the button as image button, by default is
false.
* include/ajax/visual_console_builder.ajax.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php: change the buttons
palete for a palete with more small buttons as icon buttons, added new items
for visual map (icon and label). And fixed the dinamic change label color
for any elements.
* include/functions_visual_map.php: added the new items (label and icon)
and cleaned the source code.
Pending task: #3019641
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3061 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-07-26 13:56:04 +02:00
|
|
|
input.delete_min {
|
|
|
|
background: #e5e5e5 url(../../images/cross.png) no-repeat center;
|
|
|
|
}
|
|
|
|
input.delete_min[disabled] {
|
|
|
|
background: #e5e5e5 url(../../images/cross.disabled.png) no-repeat center;
|
|
|
|
}
|
|
|
|
input.graph_min {
|
|
|
|
background: #e5e5e5 url(../../images/chart_curve.png) no-repeat center;
|
|
|
|
}
|
|
|
|
input.graph_min[disabled] {
|
|
|
|
background: #e5e5e5 url(../../images/chart_curve.disabled.png) no-repeat center;
|
|
|
|
}
|
|
|
|
input.percentile_min {
|
|
|
|
background: #e5e5e5 url(../../images/chart_bar.png) no-repeat center;
|
|
|
|
}
|
|
|
|
input.percentile_min[disabled] {
|
|
|
|
background: #e5e5e5 url(../../images/chart_bar.disabled.png) no-repeat center;
|
|
|
|
}
|
2012-03-05 Miguel de Dios <miguel.dedios@artica.es>
* extensions/update_manager/main.php, general/shortcut_bar.php,
godmode/reporting/reporting_builder.item_editor.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.preview.php, include/functions_api.php,
include/functions_html.php, include/htmlawed.php, include/pchart_graph.php,
operation/events/events_list.php, operation/netflow/nf_live_view.php:
cleaned source code style.
* godmode/menu.php, godmode/agentes/manage_config_remote.php: removed the
enterprise feature that have been wrong for years.
* general/header.php: changed to load the jquery-ui and jquery javascript
library to last version.
* extensions/insert_data.php, extensions/snmp_explorer.php,
godmode/agentes/agent_manager.php, include/ajax/agent.php,
include/javascript/pandora.js, operation/agentes/exportdata.php,
operation/events/events.php: changed the unknow plugin autocomplete for
the autocomple from jquery-ui.
* include/functions_ui.php: cleaned source code style and into the function
"ui_process_page_head" added the blacklist hardwrote for to use old jquery.
* include/styles/jquery-ui-1.8.17.custom.css,
include/javascript/jquery-1.7.1.min.js,
include/javascript/jquery.jquery-ui-1.8.17.custom.min.js: added the last
version of Jquery and Jquery-ui.
Merge from the branch "pandora_4.0"
* godmode/reporting/visual_console_builder.constans.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/javascript/pandora_visual_console.js: changed the unknow
plugin autocomplete for the autocomple from jquery-ui and added function to
paint a Bubble Chart (http://en.wikipedia.org/wiki/Bubble_chart) with the
name "progress_bubble".
* images/percentile_item.disabled.png, images/percentile_item.png: added
images for button of percentile item (new item in visual map).
* include/styles/pandora.css: added the style for the new button percentile
item.
* include/functions_graph.php, include/graphs/fgraph.php,
include/graphs/functions_gd.php: cleaned source code style, and added the
params to set text and color in the function "progress_bar" and added
function to paint a Bubble Chart (http://en.wikipedia.org/wiki/Bubble_chart)
with the name "progress_bubble".
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5693 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-03-05 18:56:56 +01:00
|
|
|
input.percentile_item_min {
|
|
|
|
background: #e5e5e5 url(../../images/percentile_item.png) no-repeat center;
|
|
|
|
}
|
|
|
|
input.percentile_item_min[disabled] {
|
|
|
|
background: #e5e5e5 url(../../images/percentile_item.disabled.png) no-repeat center;
|
|
|
|
}
|
2010-07-26 Miguel de Dios <miguel.dedios@artica.es>
* images/mimetypes/text.png: added lost image file in previous commits about
collections.
*images/tag_red.disabled.png, images/cross.disabled.png,
images/chart_curve.disabled.png, images/config.disabled.png,
images/chart_bar.disabled.png, images/photo.disabled.png,
images/camera.disabled.png, images/binary.disabled.png: added image files
for the new palete buttons (when it are disabled) in visual console editor.
* include/styles/pandora.css: added the styles for the new buttons of
visual console editor (label and icon), and some changes for new style for
buttons of the palete in this page.
* include/functions_html.php: in function "print_button" added new
parameter $imageButton to set the button as image button, by default is
false.
* include/ajax/visual_console_builder.ajax.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php: change the buttons
palete for a palete with more small buttons as icon buttons, added new items
for visual map (icon and label). And fixed the dinamic change label color
for any elements.
* include/functions_visual_map.php: added the new items (label and icon)
and cleaned the source code.
Pending task: #3019641
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3061 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2010-07-26 13:56:04 +02:00
|
|
|
input.binary_min {
|
|
|
|
background: #e5e5e5 url(../../images/binary.png) no-repeat center;
|
|
|
|
}
|
|
|
|
input.binary_min[disabled] {
|
|
|
|
background: #e5e5e5 url(../../images/binary.disabled.png) no-repeat center;
|
|
|
|
}
|
|
|
|
input.camera_min {
|
|
|
|
background: #e5e5e5 url(../../images/camera.png) no-repeat center;
|
|
|
|
}
|
|
|
|
input.camera_min[disabled] {
|
|
|
|
background: #e5e5e5 url(../../images/camera.disabled.png) no-repeat center;
|
|
|
|
}
|
|
|
|
input.config_min {
|
|
|
|
background: #e5e5e5 url(../../images/config.png) no-repeat center;
|
|
|
|
}
|
|
|
|
input.config_min[disabled] {
|
|
|
|
background: #e5e5e5 url(../../images/config.disabled.png) no-repeat center;
|
|
|
|
}
|
|
|
|
input.label_min {
|
|
|
|
background: #e5e5e5 url(../../images/tag_red.png) no-repeat center;
|
|
|
|
}
|
|
|
|
input.label_min[disabled] {
|
|
|
|
background: #e5e5e5 url(../../images/tag_red.disabled.png) no-repeat center;
|
|
|
|
}
|
|
|
|
input.icon_min {
|
|
|
|
background: #e5e5e5 url(../../images/photo.png) no-repeat center;
|
|
|
|
}
|
|
|
|
input.icon_min[disabled] {
|
|
|
|
background: #e5e5e5 url(../../images/photo.disabled.png) no-repeat center;
|
2010-06-06 23:01:10 +02:00
|
|
|
}
|
2012-01-30 18:19:40 +01:00
|
|
|
input.grid_min {
|
|
|
|
background: #e5e5e5 url(../../images/grid.png) no-repeat center;
|
|
|
|
}
|
2012-02-21 15:05:57 +01:00
|
|
|
input.save_min {
|
|
|
|
background: #e5e5e5 url(../../images/file.png) no-repeat center;
|
|
|
|
}
|
|
|
|
input.save_min[disabled] {
|
|
|
|
background: #e5e5e5 url(../../images/file.disabled.png) no-repeat center;
|
|
|
|
}
|
2012-01-30 18:19:40 +01:00
|
|
|
input.grid_min[disabled] {
|
|
|
|
background: #e5e5e5 url(../../images/grid.disabled.png) no-repeat center;
|
|
|
|
}
|
2011-07-06 13:57:27 +02:00
|
|
|
#toolbox {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2007-02-23 10:08:26 +01:00
|
|
|
table, img {
|
|
|
|
border: 0px;
|
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2007-06-17 17:06:36 +02:00
|
|
|
th {
|
2007-05-07 17:32:03 +02:00
|
|
|
color: #fff;
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #B1B1B1;
|
2009-02-19 22:34:27 +01:00
|
|
|
text-align:center;
|
2011-07-06 13:57:27 +02:00
|
|
|
font-size: 7pt;
|
2007-03-02 18:56:07 +01:00
|
|
|
}
|
2009-01-26 17:48:22 +01:00
|
|
|
tr.datos, tr.datost, tr.datosb , tr.datos_id,
|
2012-04-30 21:22:07 +02:00
|
|
|
tr.datosf9 {
|
|
|
|
background-color: #eaeaea;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr.datos2, tr.datos2t,
|
2009-01-26 17:48:22 +01:00
|
|
|
tr.datos2b, tr.datos2_id , tr.datos2f9 {
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #f2f2f2;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2009-01-26 17:48:22 +01:00
|
|
|
tr.datos:hover, tr.datost:hover, tr.datosb:hover, tr.datos_id:hover,
|
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
|
|
|
tr.datosf9:hover, tr.datos2:hover, tr.datos2t:hover,
|
|
|
|
tr.datos2b:hover, tr.datos2_id:hover, tr.datos2f9:hover {
|
2007-04-11 05:12:48 +02:00
|
|
|
background-color: #efefef;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2007-02-23 10:08:26 +01:00
|
|
|
td.datos3 {
|
2007-05-08 13:24:57 +02:00
|
|
|
background-color: #d4ddc6;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2009-06-24 18:04:19 +02:00
|
|
|
td.datos4 {
|
2011-04-27 15:43:31 +02:00
|
|
|
/*Add !important because in php the function html_print_table write style in cell and this is style head.*/
|
2009-06-24 18:04:19 +02:00
|
|
|
text-align: center !important;
|
|
|
|
background-color: #d4ddc6;
|
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2007-02-23 10:08:26 +01:00
|
|
|
td.datos_id {
|
|
|
|
color: #1a313a;
|
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2009-08-07 Miguel de Dios <miguel.dedios@artica.es>
* operation/visual_console/index.php,
pandora_console/operation/users/user.php, operation/incidents/incident.php,
operation/agentes/status_monitor.php, operation/agentes/estado_agente.php,
operation/agentes/alerts_status.php, include/styles/pandora.css,
include/styles/pandora_black.css,include/styles/pandora_blackmetal.css,
include/styles/pandora_width.css, include/styles/pandora_minimal.css,
include/styles/pandora_red.css: the table list now has rows with alternate
colours for easy see the data.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1833 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-08-10 11:55:53 +02:00
|
|
|
tr.rowPair {
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #efefef;
|
2009-08-07 Miguel de Dios <miguel.dedios@artica.es>
* operation/visual_console/index.php,
pandora_console/operation/users/user.php, operation/incidents/incident.php,
operation/agentes/status_monitor.php, operation/agentes/estado_agente.php,
operation/agentes/alerts_status.php, include/styles/pandora.css,
include/styles/pandora_black.css,include/styles/pandora_blackmetal.css,
include/styles/pandora_width.css, include/styles/pandora_minimal.css,
include/styles/pandora_red.css: the table list now has rows with alternate
colours for easy see the data.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1833 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-08-10 11:55:53 +02:00
|
|
|
}
|
|
|
|
tr.rowOdd {
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #f2f2f2;
|
2009-08-07 Miguel de Dios <miguel.dedios@artica.es>
* operation/visual_console/index.php,
pandora_console/operation/users/user.php, operation/incidents/incident.php,
operation/agentes/status_monitor.php, operation/agentes/estado_agente.php,
operation/agentes/alerts_status.php, include/styles/pandora.css,
include/styles/pandora_black.css,include/styles/pandora_blackmetal.css,
include/styles/pandora_width.css, include/styles/pandora_minimal.css,
include/styles/pandora_red.css: the table list now has rows with alternate
colours for easy see the data.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1833 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-08-10 11:55:53 +02:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2009-08-07 Miguel de Dios <miguel.dedios@artica.es>
* operation/visual_console/index.php,
pandora_console/operation/users/user.php, operation/incidents/incident.php,
operation/agentes/status_monitor.php, operation/agentes/estado_agente.php,
operation/agentes/alerts_status.php, include/styles/pandora.css,
include/styles/pandora_black.css,include/styles/pandora_blackmetal.css,
include/styles/pandora_width.css, include/styles/pandora_minimal.css,
include/styles/pandora_red.css: the table list now has rows with alternate
colours for easy see the data.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1833 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-08-10 11:55:53 +02:00
|
|
|
tr.rowPair:hover {
|
2009-08-11 19:14:21 +02:00
|
|
|
background-color: #E0E0E0;
|
2009-08-07 Miguel de Dios <miguel.dedios@artica.es>
* operation/visual_console/index.php,
pandora_console/operation/users/user.php, operation/incidents/incident.php,
operation/agentes/status_monitor.php, operation/agentes/estado_agente.php,
operation/agentes/alerts_status.php, include/styles/pandora.css,
include/styles/pandora_black.css,include/styles/pandora_blackmetal.css,
include/styles/pandora_width.css, include/styles/pandora_minimal.css,
include/styles/pandora_red.css: the table list now has rows with alternate
colours for easy see the data.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1833 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-08-10 11:55:53 +02:00
|
|
|
}
|
|
|
|
tr.rowOdd:hover {
|
2009-08-11 19:14:21 +02:00
|
|
|
background-color: #E0E0E0
|
2009-08-07 Miguel de Dios <miguel.dedios@artica.es>
* operation/visual_console/index.php,
pandora_console/operation/users/user.php, operation/incidents/incident.php,
operation/agentes/status_monitor.php, operation/agentes/estado_agente.php,
operation/agentes/alerts_status.php, include/styles/pandora.css,
include/styles/pandora_black.css,include/styles/pandora_blackmetal.css,
include/styles/pandora_width.css, include/styles/pandora_minimal.css,
include/styles/pandora_red.css: the table list now has rows with alternate
colours for easy see the data.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1833 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-08-10 11:55:53 +02:00
|
|
|
}
|
2007-05-27 14:11:15 +02:00
|
|
|
.bg { /* op menu */
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #567953;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2007-02-27 20:03:56 +01:00
|
|
|
.bg2 { /* main page */
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #0A160C;
|
2007-02-27 20:03:56 +01:00
|
|
|
}
|
|
|
|
.bg3 { /* godmode */
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #0A160C;
|
2007-02-27 20:03:56 +01:00
|
|
|
}
|
|
|
|
.bg4 { /* links */
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #6BBE2F;
|
2007-02-27 20:03:56 +01:00
|
|
|
}
|
|
|
|
.bg, .bg2, .bg3, .bg4 {
|
2007-02-23 10:08:26 +01:00
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2010-05-24 18:17:21 +02:00
|
|
|
.bg {
|
2008-12-21 16:26:55 +01:00
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
.bg2, .bg3, .bg4 {
|
2012-04-30 21:22:07 +02:00
|
|
|
height: 18px;
|
2008-12-21 16:26:55 +01:00
|
|
|
}
|
2007-05-07 17:32:03 +02:00
|
|
|
.f10, #ip {
|
2007-05-24 23:06:42 +02:00
|
|
|
font-size: 7pt;
|
2007-02-23 10:08:26 +01:00
|
|
|
text-align: center;
|
|
|
|
}
|
2008-11-21 18:58:30 +01:00
|
|
|
.f9, .f9i, .f9b, .datos_greyf9, .datos_bluef9, .datos_greenf9, .datos_redf9, .datos_yellowf9, td.f9, td.f9i, td.datosf9, td.datos2f9 {
|
2007-06-02 15:52:45 +02:00
|
|
|
font-size: 6.5pt;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
.f9i, .redi {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
.tit {
|
2012-05-08 17:43:45 +02:00
|
|
|
padding: 3px 1px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
.tit, .titb {
|
|
|
|
font-weight: bold;
|
2007-05-07 17:32:03 +02:00
|
|
|
color: #fff;
|
2007-02-23 10:08:26 +01:00
|
|
|
text-align: center;
|
|
|
|
}
|
2009-03-05 13:52:59 +01:00
|
|
|
.suc, .error, .help {
|
2009-05-20 15:24:50 +02:00
|
|
|
padding: 4px 1px 6px 30px;
|
2009-01-16 11:55:29 +01:00
|
|
|
}
|
2007-06-13 Raul Mateos <raulofpandora@gmail.com>
* godmode/menu.php, operation/menu.php, include/pandora.css, include/op.css,
include/god.css: Updated with styles to avoid top and bottom border.
* godmode/groups/group_list.php, godmode/users/*.php, operation/users/*.php,
godmode/servers/*.php, operation/snmpconsole/snmp_alert.php,
godmode/reporting/map_builder.php, operation/messages/message.php:
Removed old raya style and changed to new style.
* include/languages/language_en.php: Changed some typing error.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@509 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-06-13 21:14:05 +02:00
|
|
|
.suc {
|
|
|
|
color: #5a8629;
|
2007-06-25 12:37:43 +02:00
|
|
|
background: url(../../images/suc.png) no-repeat 1px;
|
2007-06-13 Raul Mateos <raulofpandora@gmail.com>
* godmode/menu.php, operation/menu.php, include/pandora.css, include/op.css,
include/god.css: Updated with styles to avoid top and bottom border.
* godmode/groups/group_list.php, godmode/users/*.php, operation/users/*.php,
godmode/servers/*.php, operation/snmpconsole/snmp_alert.php,
godmode/reporting/map_builder.php, operation/messages/message.php:
Removed old raya style and changed to new style.
* include/languages/language_en.php: Changed some typing error.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@509 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-06-13 21:14:05 +02:00
|
|
|
}
|
2007-02-23 10:08:26 +01:00
|
|
|
.error {
|
2007-06-25 12:37:43 +02:00
|
|
|
background: url(../../images/err.png) no-repeat;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2009-03-05 13:52:59 +01:00
|
|
|
.help {
|
|
|
|
background: url(../../images/help.png) no-repeat;
|
|
|
|
}
|
2008-11-21 18:58:30 +01:00
|
|
|
.red, .redb, .redi, .error {
|
2009-11-03 12:13:47 +01:00
|
|
|
color: #c00;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2009-01-12 Sancho Lerena <slerena@artica.es>
* pandoradb.sql: Removed fields "timestamp" and "id_agente" (and altered
some indexes) on tagente_datos, tagente_datos_string and
tagente_datos_inc.
tagente_estado table: removed cambio, added status_changes, last_status.
tagente_modulo: added five new fields (warning,critical mgmt., flipflop
detection, history module and delete_pending bit.
* agent_manager.php: Group ALL not shown anymore.
* configurar_agente.php: Support for new options. Delete a module now
mark for deletion the module, not delete data (It's VERY slow!).
* modificar_agente.php: Delete agent now uses the global function,
minor fixes.
* module_manager_editor.php: New fields initializacion.
* module_manager_editor_network.php: At this time, the first module
editor who implements the new fields and improve old ones (tcp data).
* setup.php: Added support for new token: event_view_hr (Filter of max
old (in hr) for the event viewer. Removed old tokens show_unknown and
show_lastalert.
* functions.php: format_for_graph() has an important BUG that makes
all units rendered without the "K" !!!!. Fixed.
* delete_agent.php: Delete remote config (if present). Also mark
for deletion modules instead delete them (and let the data without
being deleted, because it's a HUGE consuming time, and it's left
for the daily db maintance process).
* estado_agente.php: Updated code for view new status.
* estado_generalagente.php: Total packets are removed from this view,
this was a huge time consuming SQL operation that don't give important
infomation. Groupname is now visualized.
* estado_ultimopaquete.php,
* estado_monitores.php,
* estado_grupo.php: Rewritten much code to view new status and other
minor changes.
* ver_agente.php: Data view now works under the tabs and other minor
changes.
* events.php: Support for the new events and status. Added filter for
username and for a max. hours old events. Some boxes are now hidden
by default.
* fgraph.php: Some graphs are now fixed and uses tagente_datos and
tagent_access with utimestamp and without id_agent index. Works faster
* images/*: Updated icons (module types) and two new bulb colors.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1326 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 04:53:33 +01:00
|
|
|
|
2007-02-23 10:08:26 +01:00
|
|
|
.sep {
|
|
|
|
margin-left: 30px;
|
|
|
|
border-bottom: 1px solid #708090;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2010-08-04 13:08:16 +02:00
|
|
|
.orange {
|
|
|
|
color: #ffa300;
|
|
|
|
}
|
2010-05-24 18:17:21 +02:00
|
|
|
.green {
|
2007-02-23 10:08:26 +01:00
|
|
|
color: #5a8629;
|
|
|
|
}
|
2010-05-24 18:17:21 +02:00
|
|
|
.yellow {
|
2009-01-12 Sancho Lerena <slerena@artica.es>
* pandoradb.sql: Removed fields "timestamp" and "id_agente" (and altered
some indexes) on tagente_datos, tagente_datos_string and
tagente_datos_inc.
tagente_estado table: removed cambio, added status_changes, last_status.
tagente_modulo: added five new fields (warning,critical mgmt., flipflop
detection, history module and delete_pending bit.
* agent_manager.php: Group ALL not shown anymore.
* configurar_agente.php: Support for new options. Delete a module now
mark for deletion the module, not delete data (It's VERY slow!).
* modificar_agente.php: Delete agent now uses the global function,
minor fixes.
* module_manager_editor.php: New fields initializacion.
* module_manager_editor_network.php: At this time, the first module
editor who implements the new fields and improve old ones (tcp data).
* setup.php: Added support for new token: event_view_hr (Filter of max
old (in hr) for the event viewer. Removed old tokens show_unknown and
show_lastalert.
* functions.php: format_for_graph() has an important BUG that makes
all units rendered without the "K" !!!!. Fixed.
* delete_agent.php: Delete remote config (if present). Also mark
for deletion modules instead delete them (and let the data without
being deleted, because it's a HUGE consuming time, and it's left
for the daily db maintance process).
* estado_agente.php: Updated code for view new status.
* estado_generalagente.php: Total packets are removed from this view,
this was a huge time consuming SQL operation that don't give important
infomation. Groupname is now visualized.
* estado_ultimopaquete.php,
* estado_monitores.php,
* estado_grupo.php: Rewritten much code to view new status and other
minor changes.
* ver_agente.php: Data view now works under the tabs and other minor
changes.
* events.php: Support for the new events and status. Added filter for
username and for a max. hours old events. Some boxes are now hidden
by default.
* fgraph.php: Some graphs are now fixed and uses tagente_datos and
tagent_access with utimestamp and without id_agent index. Works faster
* images/*: Updated icons (module types) and two new bulb colors.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1326 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 04:53:33 +01:00
|
|
|
color: #F3C500;
|
|
|
|
}
|
2007-02-23 10:08:26 +01:00
|
|
|
.greenb {
|
|
|
|
color: #00aa00;
|
|
|
|
}
|
|
|
|
.grey {
|
|
|
|
color: #808080;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.redb, .greenb, td.datos_id, td.datos2_id, f9b {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.p10 {
|
|
|
|
padding-top: 1px;
|
|
|
|
padding-bottom: 0px;
|
|
|
|
}
|
|
|
|
.p21 {
|
|
|
|
padding-top: 2px;
|
|
|
|
padding-bottom: 1px;
|
|
|
|
}
|
|
|
|
.w120 {
|
|
|
|
width: 120px;
|
|
|
|
}
|
2008-06-26 Esteban Sanchez <estebans@artica.es>
* ajax.php: Sed id_user in config array.
* godmode/menu.php, general/header.php, operation/menu.php: Replaced
lang_label with lang_string().
* general/logon_ok.php: Reduced one indentation level.
* godmode/agentes/agent_manager.php: Replaced lang_label with
lang_string(). Use pandora functions.
* include/functions_html.php, godmode/agentes/configurar_agente.php:
Tab and blankspaces style correction.
* godmode/reporting/map_builder.php: Complete rewritten to provide an
intuitive way of build the maps. It's cool, useful and very simple.
* godmode/reporting/reporting_builder.php: Deleted an output debug.
* godmode/setup/setup.php: Rewritten to use pandora functions. Added a
colorpicker for color settings.
* include/config.php: Reset pandora password. We must solve things
with this file...
* include/functions.php: Check if input is an array on safe_input().
Use filename as id in array returned by list_files().
* include/functions_db.php: Renamed return_coordinate_* functions.
Style correction.
* include/javascript/jquery.js: Updated to 1.2.6.
* include/javascript/jquery.ui.datepicker.js: Code minimized.
* include/javascript/pandora.js: Style correction.
* include/javascript/wz_jsgraphics.js: Added a class to the elements
of a line, so it can be modified using javascript.
* /include/styles/pandora.css: Added style to some tables dropdowns.
Added new styles relative to visual map editor.
* operation/reporting/reporting_viewer.php: Style correction. Added
jQuery UI.
* operation/visual_console/index.php: Use Pandora functions.
* operation/visual_console/render_view.php: Drawing the map is now on
functions_visual_map.php. Added a countdown if a refresh time is set.
Use pandora functions. Style correction.
* reporting/fgraph.php: Style correction. Use graphic_error() if
there's no data on grafico_modulo_sparse().
* images/trash.png: Added to repository. Image used on trash area on
visual map editor.
* images/console/background/africa.jpg,
images/console/background/asia.jpg,
images/console/background/europe.jpg,
images/console/background/north_america.jpg,
images/console/background/oceania.jpg,
images/console/background/shouth_america.jpg,
images/console/background/world.jpg: Added to repository. Useful and
cool map backgrounds.
* include/functions_visual_map.php: Added to repository. Implements
visual map functions like drawing the map.
* include/javascript/jquery.colorpicker.js: Added to repository.
Implements a color picker widget.
* /include/javascript/jquery.countdown.js: Added to repository.
Implements a countdown widget.
* include/javascript/jquery.ui.core.js: Added to repository. jQuery UI
core.
* include/javascript/jquery.ui.draggable.js: Added to repository.
jQuery draggable plugin.
* include/javascript/jquery.ui.droppable.js: Added to repository.
jQuery droppable plugin.
* include/javascript/pandora_visual_console.js: Added to repository.
Function useful to visual map interface.
* include/languages/countdown_*.js: Added to repository. Countdown
localization.
* include/languages/date_es_la.js, include/languages/date_gl.js,
include/languages/time_es_la.js, include/languages/time_gl.js: Added
to repository. Missing localizations.
* include/styles/color-picker.css: Added to repository. Colorpicker
style sheet.
* include/styles/countdown.css: Added to repository. Countdown style
sheet.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@899 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-06-26 15:26:48 +02:00
|
|
|
.w130, #table-agent-configuration select {
|
2007-02-23 10:08:26 +01:00
|
|
|
width: 130px;
|
|
|
|
}
|
2007-04-18 23:45:03 +02:00
|
|
|
.w135 {
|
2007-02-23 10:08:26 +01:00
|
|
|
width: 135px;
|
|
|
|
}
|
2008-06-26 Esteban Sanchez <estebans@artica.es>
* ajax.php: Sed id_user in config array.
* godmode/menu.php, general/header.php, operation/menu.php: Replaced
lang_label with lang_string().
* general/logon_ok.php: Reduced one indentation level.
* godmode/agentes/agent_manager.php: Replaced lang_label with
lang_string(). Use pandora functions.
* include/functions_html.php, godmode/agentes/configurar_agente.php:
Tab and blankspaces style correction.
* godmode/reporting/map_builder.php: Complete rewritten to provide an
intuitive way of build the maps. It's cool, useful and very simple.
* godmode/reporting/reporting_builder.php: Deleted an output debug.
* godmode/setup/setup.php: Rewritten to use pandora functions. Added a
colorpicker for color settings.
* include/config.php: Reset pandora password. We must solve things
with this file...
* include/functions.php: Check if input is an array on safe_input().
Use filename as id in array returned by list_files().
* include/functions_db.php: Renamed return_coordinate_* functions.
Style correction.
* include/javascript/jquery.js: Updated to 1.2.6.
* include/javascript/jquery.ui.datepicker.js: Code minimized.
* include/javascript/pandora.js: Style correction.
* include/javascript/wz_jsgraphics.js: Added a class to the elements
of a line, so it can be modified using javascript.
* /include/styles/pandora.css: Added style to some tables dropdowns.
Added new styles relative to visual map editor.
* operation/reporting/reporting_viewer.php: Style correction. Added
jQuery UI.
* operation/visual_console/index.php: Use Pandora functions.
* operation/visual_console/render_view.php: Drawing the map is now on
functions_visual_map.php. Added a countdown if a refresh time is set.
Use pandora functions. Style correction.
* reporting/fgraph.php: Style correction. Use graphic_error() if
there's no data on grafico_modulo_sparse().
* images/trash.png: Added to repository. Image used on trash area on
visual map editor.
* images/console/background/africa.jpg,
images/console/background/asia.jpg,
images/console/background/europe.jpg,
images/console/background/north_america.jpg,
images/console/background/oceania.jpg,
images/console/background/shouth_america.jpg,
images/console/background/world.jpg: Added to repository. Useful and
cool map backgrounds.
* include/functions_visual_map.php: Added to repository. Implements
visual map functions like drawing the map.
* include/javascript/jquery.colorpicker.js: Added to repository.
Implements a color picker widget.
* /include/javascript/jquery.countdown.js: Added to repository.
Implements a countdown widget.
* include/javascript/jquery.ui.core.js: Added to repository. jQuery UI
core.
* include/javascript/jquery.ui.draggable.js: Added to repository.
jQuery draggable plugin.
* include/javascript/jquery.ui.droppable.js: Added to repository.
jQuery droppable plugin.
* include/javascript/pandora_visual_console.js: Added to repository.
Function useful to visual map interface.
* include/languages/countdown_*.js: Added to repository. Countdown
localization.
* include/languages/date_es_la.js, include/languages/date_gl.js,
include/languages/time_es_la.js, include/languages/time_gl.js: Added
to repository. Missing localizations.
* include/styles/color-picker.css: Added to repository. Colorpicker
style sheet.
* include/styles/countdown.css: Added to repository. Countdown style
sheet.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@899 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-06-26 15:26:48 +02:00
|
|
|
.w155, #table_layout_data select {
|
2007-02-23 10:08:26 +01:00
|
|
|
width: 155px;
|
|
|
|
}
|
2007-05-07 17:32:03 +02:00
|
|
|
.top, .top_red, .bgt, td.datost, td.datos2t {
|
2007-02-23 10:08:26 +01:00
|
|
|
vertical-align: top;
|
|
|
|
}
|
2007-03-12 18:58:52 +01:00
|
|
|
.top_red {
|
|
|
|
background: #ff0000;
|
|
|
|
}
|
2007-02-23 10:08:26 +01:00
|
|
|
.bot, .titb, td.datosb {
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
.msg {
|
|
|
|
margin-top: 15px;
|
|
|
|
text-align: justify;
|
|
|
|
}
|
|
|
|
ul.mn {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0px 0px 0px 0px;
|
|
|
|
margin: 0px 0px 0px 0px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
.gr {
|
|
|
|
font-size: 10pt;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
a.mn, .gr {
|
|
|
|
font-family: Arial, Verdana, sans-serif, Helvetica;
|
|
|
|
}
|
|
|
|
div.nf {
|
2011-07-06 13:57:27 +02:00
|
|
|
background: url(../../images/info.png) no-repeat scroll 0 50% transparent;
|
2007-03-06 22:37:38 +01:00
|
|
|
color: #ac4444;
|
2007-02-27 20:03:56 +01:00
|
|
|
margin-left: 7px;
|
2011-07-06 13:57:27 +02:00
|
|
|
padding: 8px 1px 6px 25px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2007-02-27 20:03:56 +01:00
|
|
|
div.title_line {
|
2007-03-06 22:37:38 +01:00
|
|
|
background-color: #4e682c;
|
2007-02-27 20:03:56 +01:00
|
|
|
height: 5px;
|
|
|
|
width: 762px;
|
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
|
|
|
#menu_tab_frame {
|
|
|
|
background:#0A160C;
|
|
|
|
}
|
|
|
|
#menu_tab_frame_view {
|
|
|
|
background:#567953;
|
|
|
|
}
|
|
|
|
|
2009-04-09 23:06:17 +02:00
|
|
|
#menu_tab_frame, #menu_tab_frame_view {
|
2011-06-28 16:45:10 +02:00
|
|
|
display: block !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
border-bottom:1px solid #B1B1B1;
|
2011-06-28 16:45:10 +02:00
|
|
|
/* float:left; */
|
2009-04-09 23:06:17 +02:00
|
|
|
margin-left:-8px;
|
|
|
|
min-height:25px;
|
2012-04-30 21:22:07 +02:00
|
|
|
padding-right:28px;
|
2009-04-09 23:06:17 +02:00
|
|
|
width:100%;
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
}
|
2008-04-03 17:43:34 +02:00
|
|
|
#menu_tab_frame_view {
|
2012-04-30 21:22:07 +02:00
|
|
|
background: #567953;
|
2008-04-03 17:43:34 +02:00
|
|
|
}
|
2007-05-07 17:32:03 +02:00
|
|
|
#menu_tab .mn, #menu_tab ul, #menu_tab .mn ul {
|
2007-02-27 20:03:56 +01:00
|
|
|
padding: 0px;
|
|
|
|
list-style: none;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
2007-05-07 17:32:03 +02:00
|
|
|
#menu_tab .mn li {
|
2007-02-23 10:08:26 +01:00
|
|
|
float: right;
|
2007-02-27 20:03:56 +01:00
|
|
|
position: relative;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2009-04-09 23:06:17 +02:00
|
|
|
#menu_tab li a, #menu_tab a {
|
2007-04-18 23:45:03 +02:00
|
|
|
background: #d4ddc6;
|
2009-04-09 23:06:17 +02:00
|
|
|
padding: 3px 5px;
|
2009-12-04 13:12:04 +01:00
|
|
|
color: #666;
|
2012-04-30 21:22:07 +02:00
|
|
|
border-left: 2px solid #567953;
|
2007-02-27 20:03:56 +01:00
|
|
|
font-weight: bold;
|
2009-08-06 20:55:54 +02:00
|
|
|
line-height: 18px;
|
2007-02-27 20:03:56 +01:00
|
|
|
}
|
2010-07-26 13:08:59 +02:00
|
|
|
|
|
|
|
#menu_tab li.separator_view {
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menu_tab li.separator {
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
#menu_tab li.nomn_high a {
|
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
|
|
|
background: #799E48;
|
|
|
|
color: #fff;
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
}
|
2007-05-07 17:32:03 +02:00
|
|
|
#menu_tab .mn li a {
|
2007-02-27 20:03:56 +01:00
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2008-12-21 16:26:55 +01:00
|
|
|
#menu_tab li.nomn:hover a, #menu_tab li:hover ul a:hover {
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
background: #799E48;
|
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
|
|
|
color: #fff;
|
2007-02-27 20:03:56 +01:00
|
|
|
}
|
2007-05-07 17:32:03 +02:00
|
|
|
#menu_tab li:hover a {
|
2009-10-14 20:57:53 +02:00
|
|
|
background: #b2b08a url("../../images/arrow.png") no-repeat right 3px;
|
2007-02-27 20:03:56 +01:00
|
|
|
}
|
2007-05-07 17:32:03 +02:00
|
|
|
#menu_tab li:hover ul a, #menu_tab .mn ul {
|
2007-02-27 20:03:56 +01:00
|
|
|
background: #db6351;
|
|
|
|
border-top: none;
|
|
|
|
}
|
2007-03-12 18:58:52 +01:00
|
|
|
/* TAB TITLE */
|
2007-05-07 17:32:03 +02:00
|
|
|
#menu_tab_left .mn, #menu_tab_left ul, #menu_tab_left .mn ul {
|
2009-05-13 Esteban Sánchez <estebans@artica.es>
* images/clean.png, images/fullscreen.png, images/local_component.png,
images/log-out.png, images/normalscreen.png,
images/server_export.png: Added to repository. New tango icons.
* images/application_osx_terminal.png, images/arrow_refresh.png,
images/asterisk_yellow.png, images/attach.png,
images/drive_network.png, images/drive_user.png,
images/page_white_acrobat.png, images/rainbow.png,
images/telephone.png: Deleted from repository. Unused images.
* images/add.png, images/application_double.png,
images/application_edit.png, images/application.png,
images/book_edit.png, images/calendar_view_day.png,
images/camera.png, images/email_open.png, images/email.png,
images/god3.png, images/group.png, images/heart.png,
images/house.png, images/lupa.png, images/monitor.png,
images/mouse.png, images/package.png, images/page_white_magnify.png,
images/page_white.png, images/page_white_text.png,
images/paste_plain.png, images/pdf.png,
images/refresh.png, images/reporting.png, images/rosette.png,
images/script.png, images/server_database.png, images/server.png,
images/world.png, images/zoom.png: Updated to use tango icons.
* general/ui/agents_list.php: Added pagination.
* general/header.php: Logout icon replaced.
* include/styles/pandora.css: Some styles for tabs.
* include/functions_db.php: Changed export server icon.
* operation/events/events.php, operation/snmpconsole/snmp_view.php,
operation/visual_console/render_view.php,
operation/agentes/networkmap.php: Changed fullscreen icons.
* godmode/agentes/configurar_agente.php,
include/functions_modules.php,
include/functions_agents.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1686 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-05-13 14:29:37 +02:00
|
|
|
color: #fff;
|
|
|
|
font-weight: bold;
|
2007-03-12 18:58:52 +01:00
|
|
|
padding: 0px 0px 0px 0px;
|
|
|
|
list-style: none;
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
margin: 0px 0px 0px 2px;
|
2007-03-12 18:58:52 +01:00
|
|
|
}
|
2007-05-07 17:32:03 +02:00
|
|
|
#menu_tab_left .mn li {
|
2007-03-12 18:58:52 +01:00
|
|
|
float: left;
|
|
|
|
position: relative;
|
|
|
|
}
|
2009-05-13 Esteban Sánchez <estebans@artica.es>
* images/clean.png, images/fullscreen.png, images/local_component.png,
images/log-out.png, images/normalscreen.png,
images/server_export.png: Added to repository. New tango icons.
* images/application_osx_terminal.png, images/arrow_refresh.png,
images/asterisk_yellow.png, images/attach.png,
images/drive_network.png, images/drive_user.png,
images/page_white_acrobat.png, images/rainbow.png,
images/telephone.png: Deleted from repository. Unused images.
* images/add.png, images/application_double.png,
images/application_edit.png, images/application.png,
images/book_edit.png, images/calendar_view_day.png,
images/camera.png, images/email_open.png, images/email.png,
images/god3.png, images/group.png, images/heart.png,
images/house.png, images/lupa.png, images/monitor.png,
images/mouse.png, images/package.png, images/page_white_magnify.png,
images/page_white.png, images/page_white_text.png,
images/paste_plain.png, images/pdf.png,
images/refresh.png, images/reporting.png, images/rosette.png,
images/script.png, images/server_database.png, images/server.png,
images/world.png, images/zoom.png: Updated to use tango icons.
* general/ui/agents_list.php: Added pagination.
* general/header.php: Logout icon replaced.
* include/styles/pandora.css: Some styles for tabs.
* include/functions_db.php: Changed export server icon.
* operation/events/events.php, operation/snmpconsole/snmp_view.php,
operation/visual_console/render_view.php,
operation/agentes/networkmap.php: Changed fullscreen icons.
* godmode/agentes/configurar_agente.php,
include/functions_modules.php,
include/functions_agents.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1686 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-05-13 14:29:37 +02:00
|
|
|
#menu_tab_left li a, #menu_tab_left li span {
|
2009-10-13 Sancho Lerena <slerena@artica.es>
Upps, Tuesday #13, bad day for a last commit before launch RC1 ! :-S
* general/logon_ok.php: Fixed ugly format of table showing last activity
(has a too wide table width).
* godmode/admin_access_logs.php: Removed that crappy div fashion code and
replaced by old and reliable table-based-code :-) to fix the mess with the
pagination.
* godmode/agentes/configurar_agente.php: fixed problem with postprocess
values very bug (like 0.0000000123), parameter is now passed as string
because PHP is passing the value as scientific notation and mYsql don't
understand that.
* operation/agentes/exportdata.php,
* operation/search_results.php,
* godmode/reporting/map_builder.php,
* godmode/agentes/agent_manager.php,
* godmode/reporting/graph_builder.php,
* godmode/agentes/modificar_agente.php: Added non-case search SQL code for make
agent searches non case sensitive (nombre COLLATE utf8_general_ci LIKE...)
* module_manager_editor_common.php: More size for postprocess field.
* pandora_console/godmode/alerts/configure_alert_action.php: More width for
field2 in action form.
* godmode/alerts/configure_alert_command.php: Command field has more width
and added a help icon for macro subtitutions.
* include/functions_db.php: get_agent_name() now defaults to non uppercase
the agent names, because 3.0 has case sensitive agent names, and all
data must show the real Case.
* include/styles/pandora.css: removed uppercase transition for menu items
and agent tabs.
* operation/agentes/estado_agente.php: Agent is not shown in uppercase
anymore.
* operation/agentes/estado_generalagente.php: Agent name and parent name
is not in uppercase. OS version shows only last 15 characters or full string
if strlen() < 15.
* operation/agentes/status_monitor.php: Agent name is not in uppercase
anymore.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2015 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-10-13 20:59:48 +02:00
|
|
|
/* text-transform: uppercase; */
|
2008-10-22 11:08:03 +02:00
|
|
|
padding: 2px 5px 2px 5px;
|
2007-03-12 18:58:52 +01:00
|
|
|
color: #fff;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
2007-05-07 17:32:03 +02:00
|
|
|
#menu_tab_left .mn li a {
|
2007-03-12 18:58:52 +01:00
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2007-05-27 04:55:55 +02:00
|
|
|
#menu_tab_left li.view a {
|
|
|
|
background: #6a4;
|
|
|
|
padding: 2px 10px 2px 10px;
|
|
|
|
color: #fff;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
2007-02-23 10:08:26 +01:00
|
|
|
span.users {
|
2007-03-02 18:56:07 +01:00
|
|
|
background: url(../../images/group.png) no-repeat;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
span.agents {
|
2007-03-02 18:56:07 +01:00
|
|
|
background: url(../../images/bricks.png) no-repeat;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
span.data {
|
2007-06-27 19:45:42 +02:00
|
|
|
background: url(../../images/data.png) no-repeat;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
span.alerts {
|
2007-03-02 18:56:07 +01:00
|
|
|
background: url(../../images/bell.png) no-repeat;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
span.time {
|
2007-03-02 18:56:07 +01:00
|
|
|
background: url(../../images/hourglass.png) no-repeat;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2007-04-29 15:19:45 +02:00
|
|
|
span.net {
|
2007-06-27 19:45:42 +02:00
|
|
|
background: url(../../images/network.png) no-repeat;
|
2007-04-29 15:19:45 +02:00
|
|
|
}
|
|
|
|
span.master {
|
2007-06-27 19:45:42 +02:00
|
|
|
background: url(../../images/master.png) no-repeat;
|
2007-04-29 15:19:45 +02:00
|
|
|
}
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
span.wmi {
|
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
|
|
|
background: url(../../images/wmi.png) no-repeat;
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
}
|
|
|
|
span.prediction {
|
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
|
|
|
background: url(../../images/chart_bar.png) no-repeat;
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
}
|
|
|
|
span.plugin {
|
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
|
|
|
background: url(../../images/plugin.png) no-repeat;
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
}
|
|
|
|
span.export {
|
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
|
|
|
background: url(../../images/database_refresh.png) no-repeat;
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
}
|
2007-04-29 15:19:45 +02:00
|
|
|
span.snmp {
|
2007-06-27 19:45:42 +02:00
|
|
|
background: url(../../images/snmp.png) no-repeat;
|
2007-04-29 15:19:45 +02:00
|
|
|
}
|
|
|
|
span.binary {
|
2007-06-27 19:45:42 +02:00
|
|
|
background: url(../../images/binary.png) no-repeat;
|
2007-04-29 15:19:45 +02:00
|
|
|
}
|
|
|
|
span.recon {
|
|
|
|
background: url(../../images/recon.png) no-repeat;
|
|
|
|
}
|
2007-06-27 19:45:42 +02:00
|
|
|
span.rmess {
|
|
|
|
background: url(../../images/email_open.png) no-repeat;
|
|
|
|
}
|
|
|
|
span.nrmess {
|
|
|
|
background: url(../../images/email.png) no-repeat;
|
|
|
|
}
|
2011-02-21 19:01:14 +01:00
|
|
|
span.recon_server {
|
|
|
|
background: url(../../images/recon.png) no-repeat;
|
|
|
|
}
|
|
|
|
span.wmi_server {
|
|
|
|
background: url(../../images/wmi.png) no-repeat;
|
|
|
|
}
|
|
|
|
span.export_server {
|
|
|
|
background: url(../../images/server_export.png) no-repeat;
|
|
|
|
}
|
|
|
|
span.inventory_server {
|
|
|
|
background: url(../../images/page_white_text.png) no-repeat;
|
|
|
|
}
|
|
|
|
span.web_server {
|
|
|
|
background: url(../../images/world.png) no-repeat;
|
|
|
|
}
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
/* This kind of span do not have any sense, should be replaced on PHP code
|
|
|
|
by a real img in code. They are not useful because insert too much margin around
|
|
|
|
(for example, not valid to use in the table of server view */
|
2007-04-29 15:19:45 +02:00
|
|
|
span.users, span.agents, span.data, span.alerts, span.time, span.net,
|
2008-03-06 Sancho Lerena <slerena@gmail.com>
Pandora FMS 2.0 development first commit. 1.4 version is now 2.0
* pandoradb_data.sql: Added correct tnetwork_components, fixed
ttipo_modulo (categoria values).
* include/styles/pandora.css: Added some server icons, tab style
for module editor has been improved.
* include/functions_db.php: added new functions, lang_string and
check_login, and a first review of several functions that currently
need change for new config session parameters in array $config[]
* include/javascript/pandora.js: Added a new global include for
spare javascript functions before included into a few pages.
* include/languages/language_en.php: New tokens.
* include/help*: New contextual help system.
* include/config_process.php: New way to manage config.
* include/functions.php: Added new functions to manage global
* operation/agentes/estado_ultimopaquete.php: removed old javascript
code from there.
* operation/agentes/estado_agente.php: Removed references to deprecated
field "agent_type".
* operation/agentes/tactical.php: Some code cleanup and progressbar
issues merged from 1.3.1 branch. Need to add support to new server
types and new module types.
* operation/servers/view_server.php: Added support to new servers, code
cleanup.
* reporting/fgraph.php: Code cleanup, changes to use new config method,
and a lot of style change.
* general/pandora_help.php: New source for contextual help in the way
of moodle.
* general/footer.php, general/noaccess.php: Code cleanup and uses of
new config.
* module_manager_editor: New editors for each module family. Need
finish and implement EDITION of data, now only inserts data.
* godmode/agentes/agent_manager.php: Implemented new server assigment
and edition.
* godmode/agentes/configurar_agente.php: Small changes that affects
module management, visualization and agent management.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@739 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-03-07 17:22:16 +01:00
|
|
|
span.master, span.snmp, span.binary, span.recon, span.wmi, span.prediction,
|
2011-02-21 19:01:14 +01:00
|
|
|
span.plugin, span.plugin, span.export, span.recon_server, span.wmi_server,
|
|
|
|
span.export_server, span.inventory_server, span.web_server {
|
2007-02-23 10:08:26 +01:00
|
|
|
margin-left: 4px;
|
|
|
|
margin-top: 10px;
|
|
|
|
padding: 4px 8px 12px 30px;
|
|
|
|
display: block;
|
|
|
|
}
|
2007-06-27 19:45:42 +02:00
|
|
|
span.rmess, span.nrmess {
|
|
|
|
margin-left: 14px;
|
|
|
|
padding: 1px 0px 10px 30px;
|
|
|
|
display: block;
|
|
|
|
}
|
2007-04-18 11:58:26 +02:00
|
|
|
/* New styles for data box */
|
2007-05-18 11:29:54 +02:00
|
|
|
.databox, .databox_color, .databox_frame {
|
2011-06-28 15:31:52 +02:00
|
|
|
margin-bottom: 5px;
|
2007-05-24 22:03:05 +02:00
|
|
|
margin-top: 5px;
|
|
|
|
margin-left: 0px;
|
2012-04-30 21:22:07 +02:00
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
-moz-border-radius: 4px;
|
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
2007-04-18 11:58:26 +02:00
|
|
|
}
|
|
|
|
.databox {
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #f4f5f4;
|
2007-04-18 11:58:26 +02:00
|
|
|
}
|
2011-07-06 13:57:27 +02:00
|
|
|
/* Style for login form */
|
|
|
|
.databox_login {
|
2012-03-27 19:00:55 +02:00
|
|
|
#margin-top: 100px !important;
|
2012-04-12 14:38:42 +02:00
|
|
|
width: 657px !important;
|
2012-03-27 19:00:55 +02:00
|
|
|
height: 400px;
|
2012-04-30 21:22:07 +02:00
|
|
|
#margin-bottom: 5px;
|
|
|
|
#margin-top: 5px;
|
|
|
|
#margin-left: 0px;
|
2012-03-27 19:00:55 +02:00
|
|
|
border: none !important;
|
|
|
|
background-color: #fafafa;
|
|
|
|
background: url(../../images/splash_pandora.png) no-repeat;
|
|
|
|
}
|
|
|
|
/* Style for login form */
|
|
|
|
.databox_logout {
|
2012-04-12 14:38:42 +02:00
|
|
|
width: 657px !important;
|
2012-03-27 19:00:55 +02:00
|
|
|
height: 400px;
|
2011-07-06 13:57:27 +02:00
|
|
|
border: none !important;
|
|
|
|
background-color: #fafafa;
|
2012-03-27 19:00:55 +02:00
|
|
|
background: url(../../images/splash_logout.png) no-repeat;
|
2011-07-06 13:57:27 +02:00
|
|
|
}
|
2012-03-30 16:42:12 +02:00
|
|
|
|
|
|
|
.databox_error {
|
2012-04-12 14:38:42 +02:00
|
|
|
width: 657px !important;
|
2012-03-30 16:42:12 +02:00
|
|
|
height: 400px;
|
|
|
|
border: none !important;
|
|
|
|
background-color: #fafafa;
|
|
|
|
background: url(../../images/splash_error.png) no-repeat;
|
|
|
|
}
|
|
|
|
|
2007-05-18 11:29:54 +02:00
|
|
|
.databox_color {
|
2009-11-27 Sancho lerena <slerena@artica.es>
* operation/menu.php: User section has no ACL check, always can be seen.
* index.php: Added suppor for user-defined custom language (this code was
on my disk for 3 months, pending to be commited!).
* include/functions_db.php,
* include/functions_agents.php,
* godmode/alerts/alert_list.php,
* godmode/agentes/modificar_agente.php,
* godmode/agentes/configurar_agente.php: Added audit calls to several
management operations who don't have or have insufficient audit info.
* godmode/users/configure_user.php: Fixed several annoyings bugs. Added
custom language support, and added more audit info on management operations.
* godmode/users/user_list.php: More audit info.
* include/config_process.php: Add new debug option to render error log to
/pandora_console.log. Also set timezone if not defined (this makes warnings
on several PHP 5.x setups). Added user custom language support.
* include/functions_events.php: More audit info. Fixed problems with HTML
encoding render.
* functions_io.php: Some cleaning.
* include/functions_messages.php: Fixed problems with HTML
encoding render.
* functions_ui.php: Fixed problems with HTML encoding render in
print_string_substr() function.
* auth/mysql.php: is_user_admin() functions seems to be broken ¿?¿!. Fixed.
* styles/pandora.css: removed green colored left border in default style.
* message.php, incident*: Fixed problems with HTML encoding render.
* user.php: Better ACL check before let user to view/edit another user.
* user_edit: Removed some un-used form fields, some arrangements in layout,
and FIXED forever problems with password change (new code written).
* users/user_statistics.php: Now user can see its own audit records.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2139 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-11-27 21:02:12 +01:00
|
|
|
background-color: #fafafa;
|
2007-05-18 11:29:54 +02:00
|
|
|
}
|
|
|
|
#head_l {
|
|
|
|
float: left;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
#head_r {
|
|
|
|
float: right;
|
|
|
|
text-align: right;
|
|
|
|
margin-right: 10px;
|
2009-05-13 19:00:58 +02:00
|
|
|
padding-top: 0px;
|
2007-05-18 11:29:54 +02:00
|
|
|
}
|
2007-05-18 14:56:05 +02:00
|
|
|
#head_m {
|
|
|
|
position: absolute;
|
2008-04-03 17:43:34 +02:00
|
|
|
padding-top: 6px;
|
2008-09-01 10:51:04 +02:00
|
|
|
padding-left: 12em;
|
2007-05-18 14:56:05 +02:00
|
|
|
}
|
2007-05-18 11:29:54 +02:00
|
|
|
span#logo_text1 {
|
|
|
|
font: bolder 3em Arial, Sans-serif;
|
|
|
|
letter-spacing: -2px;
|
|
|
|
color: #eee;
|
|
|
|
}
|
|
|
|
span#logo_text2 {
|
|
|
|
font: 3em Arial, Sans-serif;
|
|
|
|
letter-spacing: -2px;
|
|
|
|
color: #aaa;
|
|
|
|
}
|
2009-05-13 19:00:58 +02:00
|
|
|
|
|
|
|
div#logo_text3 {
|
|
|
|
text-align: right;
|
|
|
|
font: 2em Arial, Sans-serif;
|
|
|
|
letter-spacing: 6px;
|
|
|
|
color: #aaa;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-left: 4px;
|
2009-05-20 15:24:50 +02:00
|
|
|
padding-top: 0px;
|
2009-05-13 19:00:58 +02:00
|
|
|
}
|
|
|
|
|
2007-06-13 Raul Mateos <raulofpandora@gmail.com>
* godmode/menu.php, operation/menu.php, include/pandora.css, include/op.css,
include/god.css: Updated with styles to avoid top and bottom border.
* godmode/groups/group_list.php, godmode/users/*.php, operation/users/*.php,
godmode/servers/*.php, operation/snmpconsole/snmp_alert.php,
godmode/reporting/map_builder.php, operation/messages/message.php:
Removed old raya style and changed to new style.
* include/languages/language_en.php: Changed some typing error.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@509 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2007-06-13 21:14:05 +02:00
|
|
|
.bb0 {
|
|
|
|
border-bottom: 0px;
|
|
|
|
}
|
|
|
|
.bt0 {
|
|
|
|
border-top: 0px;
|
2008-04-24 01:29:50 +02:00
|
|
|
}
|
2008-06-17 Esteban Sanchez <estebans@artica.es>
* ajax.php: Added to repository. AJAX interface for Pandora. A new
time is coming...
* pandoradb.sql: Added id_group to treport. A report is now assigned
to a group of agents. Changes in treport_content to add an order
field, drop sla fields and use an enum for the type. NOTE: This will
break all your current defined reports, update under your
responsabillity. Added table treport_content_sla_combined to define
SLAs in the SLA types reports.
* godmode/reporting/graph_builder.php: Use Pandora functions. Adde
javascript code to display the module icon when changing from the
dropdown menu.
* godmode/reporting/reporting_builder.php: Almost complet rewritten to
use Pandora HTML functions. Style correction.
* include/functions.php: Added new report types. Style correction.
* include/functions_db.php: Use Pandora database functions to get
simple values. Added functions get_agents_in_group(),
get_modules_in_agent(), get_simple_alerts_in_agent(),
get_combined_alerts_in_agent(), get_alerts_in_agent(),
get_monitor_downs_in_period(),
get_monitor_last_down_timestamp_in_period(),
get_alert_fires_in_period(),
get_alert_last_fire_timestamp_in_period(). Deleted debug output and
fixed calling to an inexistent function in
return_moduledata_sum_value().
* include/functions_html.php: Tab style correction. Thanks to Ramon
for the advice. Fixed some errors on print_table that was causing not
to work fine if rowclass or colspan was defined.
* include/functions_reporting.php: Adde date support to
return_module_SLA(), event_reporting(). Added alert_reporting(),
monitor_health_reporting(), general_group_reporting() and
agents_detailed_reporting() to implement new report types. Style
correction.
* include/javascript/pandora.js: Added html_entity_decode() function
to decode some AJAX results.
* javascript/jquery.js: Added to repository. jQuery version 1.2.4a
* include/javascript/jquery.timeentry.js: jQuery plugin to manage time
inputs.
* include/javascript/jquery.ui.datepicker.js: jQuery plugin to manage
date inputs in a dropdown calendar.
* include/languages/date_*.js, include/languages/time_*.js: Added to
repository. Translation of date and time strings for the new calendar
javascript support.
* include/languages/language_en.php: Added new strings relatives to
reports.
* include/languages/language_de.php,
include/languages/language_fr.php, include/languages/language_gl.php,
include/languages/language_pt_br.php: Fixed a variable name.
* godmode/groups/group_list.php: Avoid the use of an extra indentation
by returning if no success on comprueba_login().
* include/styles/pandora.css: Add some classes. Tab style correction.
* operation/agentes/ver_agente.php: Added AJAX support to agent
operations.
* operation/reporting/graph_viewer.php: Period dropdown selection
improved and printed with Pandora functions.
* operation/reporting/reporting_viewer.php: Massive rewritten.
Implemented date and time support, added new report types, use Pandora
functions...
* reporting/fgraph.php: Documentation fix. Added a new graphic to show
monitors health.
* godmode/agentes/agent_manager.php,
operation/reporting/custom_reporting.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@869 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-06-17 16:30:44 +02:00
|
|
|
.action-buttons {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
#table-add-item select, #table-add-sla select {
|
|
|
|
width: 180px;
|
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2008-11-20 22:26:59 +01:00
|
|
|
/* end of classes for event priorities */
|
2008-06-13 Sancho Lerena <slerena@gmail.com>
* index.php: Added pure (Fullscreen). HTML code cleanup and user session.
* pandoradb.sql: talert_snmp: Added priority field.
* pandoradb_data.sql: Changes default values in talerta. tconfig_os, tgrupo
and some links.
* header.php: Fixed some user session management.
* logon_ok.php: New design for welcome screen, odometer is over.
* menu.php, godmode/menu.php: Some ACL improvements.
* agent_disk_conf_editor.php: Minor fix in view link.
* configurar_agente.php, agent_manager.php: Added parent combo and better
ACL checks. New remote configuration control for get timestamp info of
config file.
* modify_alert.php: Changes to use new internal Mail alert.
* config.php: Some items moved to config_process. (font, attachment and
default style).
* functions.php: Added form_agent_combo(), form_event_type_combo(),
form_priority() and return_priority() functions.
* functions_db.php: Added smal_event_table() to render a variable table
with latest events (filtered).
* pandora.css. Added pure and priority colors.
* estado_alertas.php: Fixed ACL problems.
* stado_generalagente.php: Graph of modules now represents modules that
has generated events. Old graph is not used anymore. Also display parent.
* estado_grupo.php: Border of boxes is now thicker.
* tactical.php: New screen, almost all code changed. Odometer is not used
anymore, added some new items, like module LAG meter, module sanity, and
other general metrics.
* ver_agente.php: Now renders also event for each agent view. Alert manual
validation generate a new event.
* events.php: New event system. 90% new code. A LOT of new features,
including full screen, coloured (by priority) and filters by six fields.
* snmp_alert.php: Added support for alert priority.
* operation/users/user.php: No longer a user with UM privileges could
see any other user.
* render_view.php: Added fullscreen support for visual maps.
* fgraph.php: Added support for session checking in graphs (at least!).
New graphics for events (some changed it's function like events by group),
and feature added to progress GD implementation.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@860 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-06-13 18:59:54 +02:00
|
|
|
div#main_pure {
|
2008-06-17 Esteban Sanchez <estebans@artica.es>
* ajax.php: Added to repository. AJAX interface for Pandora. A new
time is coming...
* pandoradb.sql: Added id_group to treport. A report is now assigned
to a group of agents. Changes in treport_content to add an order
field, drop sla fields and use an enum for the type. NOTE: This will
break all your current defined reports, update under your
responsabillity. Added table treport_content_sla_combined to define
SLAs in the SLA types reports.
* godmode/reporting/graph_builder.php: Use Pandora functions. Adde
javascript code to display the module icon when changing from the
dropdown menu.
* godmode/reporting/reporting_builder.php: Almost complet rewritten to
use Pandora HTML functions. Style correction.
* include/functions.php: Added new report types. Style correction.
* include/functions_db.php: Use Pandora database functions to get
simple values. Added functions get_agents_in_group(),
get_modules_in_agent(), get_simple_alerts_in_agent(),
get_combined_alerts_in_agent(), get_alerts_in_agent(),
get_monitor_downs_in_period(),
get_monitor_last_down_timestamp_in_period(),
get_alert_fires_in_period(),
get_alert_last_fire_timestamp_in_period(). Deleted debug output and
fixed calling to an inexistent function in
return_moduledata_sum_value().
* include/functions_html.php: Tab style correction. Thanks to Ramon
for the advice. Fixed some errors on print_table that was causing not
to work fine if rowclass or colspan was defined.
* include/functions_reporting.php: Adde date support to
return_module_SLA(), event_reporting(). Added alert_reporting(),
monitor_health_reporting(), general_group_reporting() and
agents_detailed_reporting() to implement new report types. Style
correction.
* include/javascript/pandora.js: Added html_entity_decode() function
to decode some AJAX results.
* javascript/jquery.js: Added to repository. jQuery version 1.2.4a
* include/javascript/jquery.timeentry.js: jQuery plugin to manage time
inputs.
* include/javascript/jquery.ui.datepicker.js: jQuery plugin to manage
date inputs in a dropdown calendar.
* include/languages/date_*.js, include/languages/time_*.js: Added to
repository. Translation of date and time strings for the new calendar
javascript support.
* include/languages/language_en.php: Added new strings relatives to
reports.
* include/languages/language_de.php,
include/languages/language_fr.php, include/languages/language_gl.php,
include/languages/language_pt_br.php: Fixed a variable name.
* godmode/groups/group_list.php: Avoid the use of an extra indentation
by returning if no success on comprueba_login().
* include/styles/pandora.css: Add some classes. Tab style correction.
* operation/agentes/ver_agente.php: Added AJAX support to agent
operations.
* operation/reporting/graph_viewer.php: Period dropdown selection
improved and printed with Pandora functions.
* operation/reporting/reporting_viewer.php: Massive rewritten.
Implemented date and time support, added new report types, use Pandora
functions...
* reporting/fgraph.php: Documentation fix. Added a new graphic to show
monitors health.
* godmode/agentes/agent_manager.php,
operation/reporting/custom_reporting.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@869 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-06-17 16:30:44 +02:00
|
|
|
background-color: #fefefe;
|
|
|
|
text-align: left;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 10px;
|
2011-08-26 11:35:15 +02:00
|
|
|
height: auto;
|
|
|
|
width: 98%;
|
|
|
|
position: absolute;
|
2008-06-13 Sancho Lerena <slerena@gmail.com>
* index.php: Added pure (Fullscreen). HTML code cleanup and user session.
* pandoradb.sql: talert_snmp: Added priority field.
* pandoradb_data.sql: Changes default values in talerta. tconfig_os, tgrupo
and some links.
* header.php: Fixed some user session management.
* logon_ok.php: New design for welcome screen, odometer is over.
* menu.php, godmode/menu.php: Some ACL improvements.
* agent_disk_conf_editor.php: Minor fix in view link.
* configurar_agente.php, agent_manager.php: Added parent combo and better
ACL checks. New remote configuration control for get timestamp info of
config file.
* modify_alert.php: Changes to use new internal Mail alert.
* config.php: Some items moved to config_process. (font, attachment and
default style).
* functions.php: Added form_agent_combo(), form_event_type_combo(),
form_priority() and return_priority() functions.
* functions_db.php: Added smal_event_table() to render a variable table
with latest events (filtered).
* pandora.css. Added pure and priority colors.
* estado_alertas.php: Fixed ACL problems.
* stado_generalagente.php: Graph of modules now represents modules that
has generated events. Old graph is not used anymore. Also display parent.
* estado_grupo.php: Border of boxes is now thicker.
* tactical.php: New screen, almost all code changed. Odometer is not used
anymore, added some new items, like module LAG meter, module sanity, and
other general metrics.
* ver_agente.php: Now renders also event for each agent view. Alert manual
validation generate a new event.
* events.php: New event system. 90% new code. A LOT of new features,
including full screen, coloured (by priority) and filters by six fields.
* snmp_alert.php: Added support for alert priority.
* operation/users/user.php: No longer a user with UM privileges could
see any other user.
* render_view.php: Added fullscreen support for visual maps.
* fgraph.php: Added support for session checking in graphs (at least!).
New graphics for events (some changed it's function like events by group),
and feature added to progress GD implementation.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@860 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-06-13 18:59:54 +02:00
|
|
|
}
|
2008-06-26 Esteban Sanchez <estebans@artica.es>
* ajax.php: Sed id_user in config array.
* godmode/menu.php, general/header.php, operation/menu.php: Replaced
lang_label with lang_string().
* general/logon_ok.php: Reduced one indentation level.
* godmode/agentes/agent_manager.php: Replaced lang_label with
lang_string(). Use pandora functions.
* include/functions_html.php, godmode/agentes/configurar_agente.php:
Tab and blankspaces style correction.
* godmode/reporting/map_builder.php: Complete rewritten to provide an
intuitive way of build the maps. It's cool, useful and very simple.
* godmode/reporting/reporting_builder.php: Deleted an output debug.
* godmode/setup/setup.php: Rewritten to use pandora functions. Added a
colorpicker for color settings.
* include/config.php: Reset pandora password. We must solve things
with this file...
* include/functions.php: Check if input is an array on safe_input().
Use filename as id in array returned by list_files().
* include/functions_db.php: Renamed return_coordinate_* functions.
Style correction.
* include/javascript/jquery.js: Updated to 1.2.6.
* include/javascript/jquery.ui.datepicker.js: Code minimized.
* include/javascript/pandora.js: Style correction.
* include/javascript/wz_jsgraphics.js: Added a class to the elements
of a line, so it can be modified using javascript.
* /include/styles/pandora.css: Added style to some tables dropdowns.
Added new styles relative to visual map editor.
* operation/reporting/reporting_viewer.php: Style correction. Added
jQuery UI.
* operation/visual_console/index.php: Use Pandora functions.
* operation/visual_console/render_view.php: Drawing the map is now on
functions_visual_map.php. Added a countdown if a refresh time is set.
Use pandora functions. Style correction.
* reporting/fgraph.php: Style correction. Use graphic_error() if
there's no data on grafico_modulo_sparse().
* images/trash.png: Added to repository. Image used on trash area on
visual map editor.
* images/console/background/africa.jpg,
images/console/background/asia.jpg,
images/console/background/europe.jpg,
images/console/background/north_america.jpg,
images/console/background/oceania.jpg,
images/console/background/shouth_america.jpg,
images/console/background/world.jpg: Added to repository. Useful and
cool map backgrounds.
* include/functions_visual_map.php: Added to repository. Implements
visual map functions like drawing the map.
* include/javascript/jquery.colorpicker.js: Added to repository.
Implements a color picker widget.
* /include/javascript/jquery.countdown.js: Added to repository.
Implements a countdown widget.
* include/javascript/jquery.ui.core.js: Added to repository. jQuery UI
core.
* include/javascript/jquery.ui.draggable.js: Added to repository.
jQuery draggable plugin.
* include/javascript/jquery.ui.droppable.js: Added to repository.
jQuery droppable plugin.
* include/javascript/pandora_visual_console.js: Added to repository.
Function useful to visual map interface.
* include/languages/countdown_*.js: Added to repository. Countdown
localization.
* include/languages/date_es_la.js, include/languages/date_gl.js,
include/languages/time_es_la.js, include/languages/time_gl.js: Added
to repository. Missing localizations.
* include/styles/color-picker.css: Added to repository. Colorpicker
style sheet.
* include/styles/countdown.css: Added to repository. Countdown style
sheet.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@899 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-06-26 15:26:48 +02:00
|
|
|
#table-agent-configuration radio {
|
|
|
|
margin-right: 40px;
|
|
|
|
}
|
|
|
|
.ui-draggable {
|
|
|
|
cursor:move;
|
|
|
|
}
|
|
|
|
#layout_trash_drop {
|
|
|
|
float: right;
|
|
|
|
width: 300px;
|
|
|
|
height: 180px;
|
|
|
|
background: #fff url("../../images/trash.png") no-repeat bottom left;
|
|
|
|
}
|
|
|
|
#layout_trash_drop div {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
#layout_editor_drop {
|
|
|
|
float: left;
|
|
|
|
width: 300px;
|
|
|
|
}
|
2008-06-27 10:06:28 +02:00
|
|
|
.agent_reporting {
|
|
|
|
margin: 5px;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
.report_table, .agent_reporting {
|
|
|
|
border: #CCC outset 3px;
|
|
|
|
}
|
2008-06-30 Jorge Gonzalez <jorge.gonzalez@artica.es>
* include/styles/pandora.css: Added cursor style for inline help.
* include/help/en/help_manage_alerts.php: Added help page for Alert
management.
* include/help/en/help_snmpcommunity.php: Added help page for SNMP
community.
* include/help/en/help_map_builder.php: Added help page for map
builder.
* include/help/en/help_postprocess.php: Checked spelling.
* include/help/en/help_module_type.php: Added help page for Module
type.
* include/help/en/help_snmpoid.php: Added help page for SNMP OID.
* include/help/en/help_alerts.php: Added help page for Alert
configuration.
* include/help/en/help_module_definition.php: Added help page for
Module definition.
* include/functions.php: Added cursor style for inline help.
* include/languages/language_en.php: Added new strings.
* operation/agentes/estado_grupo.php: Fixed wrong link and text, it is
a group, not an agent.
* operation/agentes/tactical.php: Fixed bug for empty values.
* godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_wmi.php,
godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_prediction.php,
godmode/agentes/alert_manager_editor.php,
godmode/agentes/module_manager_editor_data.php,
godmode/agentes/agent_manager.php,
godmode/modules/manage_network_components_form.php,
godmode/reporting/map_builder.php, godmode/alerts/plugin.php,
godmode/alerts/configure_alert.php: Added suppot for inline help.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@909 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2008-06-30 17:46:36 +02:00
|
|
|
.img_help {
|
|
|
|
cursor: help;
|
|
|
|
}
|
2008-07-04 12:52:27 +02:00
|
|
|
#loading {
|
|
|
|
position:fixed;
|
|
|
|
width: 200px;
|
|
|
|
margin-left: 250px;
|
|
|
|
text-align:center;
|
|
|
|
top:300px;
|
|
|
|
background-color: #999999;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
2011-06-28 15:31:52 +02:00
|
|
|
/* IE 7 Hack */
|
|
|
|
#editor {
|
|
|
|
*margin-top: 10px !important;
|
|
|
|
}
|
2008-11-11 15:24:34 +01:00
|
|
|
/* big_data is used in tactical and logon_ok */
|
2008-07-10 13:58:40 +02:00
|
|
|
a.big_data {
|
2008-11-11 15:24:34 +01:00
|
|
|
text-decoration: none; font: bold 2em Arial, Sans-serif;
|
2008-07-10 13:58:40 +02:00
|
|
|
}
|
2008-08-05 12:47:40 +02:00
|
|
|
.notify {
|
|
|
|
background-color: #f7ffa5;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 8px;
|
2011-08-25 19:17:46 +02:00
|
|
|
margin-left: -1%;
|
|
|
|
width: 101%;
|
|
|
|
z-index: -1;
|
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
|
|
|
}
|
2009-09-02 19:44:41 +02:00
|
|
|
|
|
|
|
.notify a {
|
|
|
|
color: #003a3a;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
|
|
|
.listing {
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
.listing td {
|
|
|
|
border-bottom: 1px solid #CCCCCC;
|
|
|
|
border-top: 1px solid #CCCCCC;
|
|
|
|
}
|
|
|
|
ul {
|
|
|
|
list-style-type: none;
|
|
|
|
padding-left: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
span.actions {
|
|
|
|
margin-left: 30px;
|
|
|
|
}
|
2011-06-28 15:31:52 +02:00
|
|
|
.actions {
|
|
|
|
min-width: 200px! important;
|
|
|
|
}
|
2009-03-05 13:52:59 +01:00
|
|
|
code, pre {
|
2009-01-26 17:48:22 +01:00
|
|
|
font-family: courier, serif;
|
2009-01-12 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/alert_manager.php: Complete rewritten of the alert
system when assigned alerts to an agent.
* pandoradb.sql: New tables for alert system. These are:
talert_commands, talert_actions, talert_templates,
talert_template_modules, talert_template_module_actions. No migration
tool is available yet.
* godmode/alerts/configure_alert_template.php,
godmode/alerts/configure_alert_action.php,
godmode/alerts/alert_templates.php,
godmode/alerts/configure_alert_command.php,
godmode/alerts/alert_actions.php: Added to repository. Administration
interface to new alert system.
* godmode/alerts/modify_alert.php: Deleted from repository.
* godmode/setup/setup.php: Added an example of the date format. Main
table has now percentage width.
* godmode/menu.php, operation/menu.php: Added new alert options.
Removed refr value when it's not neccesary.
* include/styles/pandora.css: Added width to textarea elements. Style
correction and cleanup. Tables doesn't have a odd-even pattern, but
the hovered row now changes its colour. New styles for alert pages.
* include/functions_custom_graphs.php: Added to repository. custom
graphs functions moved here.
* include/functions_incidents.php, include/functions_events.php: Moved
to LGPL. Style comment corrections.
* include/functions_html.php: Documentation style correction. Added
print_input_file() and print_label().
* include/functions_ui.php: Doc style correction.
* operation/reporting/graph_viewer.php: Include new function file with
custom graphs. Use generic functions.
* index.php: Unset pass from POST and REQUEST arrays.
* include/functions_db.php: Some documentation updated to new format.
Added format_array_to_update_sql() to generate SQL sentences for
updates. Style correction.
* godmode/agentes/configurar_agente.php: Variables renamed to have a
meaning.
* extensions/update_manager/main.php: Mark an string translatable.
* extensions/update_manager/lib/libupdate_manager_client.php,
godmode/alerts/configure_alert.php, include/functions.php,
godmode/agentes/module_manager.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
godmode/agentes/manage_config.php: Style correction.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1331 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-01-12 15:31:01 +01:00
|
|
|
}
|
|
|
|
select#template, select#action {
|
|
|
|
width: 250px;
|
|
|
|
}
|
2009-02-16 13:18:42 +01:00
|
|
|
#label-checkbox-matches_value,
|
|
|
|
#label-checkbox-copy_modules,
|
|
|
|
#label-checkbox-copy_alerts {
|
2009-01-16 11:55:29 +01:00
|
|
|
display: inline;
|
2009-02-16 13:18:42 +01:00
|
|
|
font-weight: normal;
|
2009-01-16 11:55:29 +01:00
|
|
|
}
|
2009-01-21 10:29:02 +01:00
|
|
|
input[type=image] {
|
|
|
|
border:0px;
|
2012-05-14 18:12:27 +02:00
|
|
|
background-color: transparent !important;
|
2009-01-21 10:29:02 +01:00
|
|
|
}
|
2009-02-11 17:55:04 +01:00
|
|
|
table#simple select#id_module_type,
|
|
|
|
table#alert_search select#id_agent,
|
2009-05-22 11:08:55 +02:00
|
|
|
table#alert_search select#id_group,
|
|
|
|
table#network_component select#type {
|
2009-02-02 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/configurar_agente.php,
godmode/agentes/module_manager.php,
godmode/agentes/module_manager_editor.php,
godmode/agentes/module_manager_editor_data.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_prediction.php,
godmode/agentes/module_manager_editor_wmi.php: Agent module editions
rewritten. The interface should be clearer now and SNMP walking much
more faster, since it's done with AJAX. Some cleanup might be needed
yet.
* godmode/agentes/module_manager_editor_common.php: Added to
repository. Common part for agent module editors.
* images/edit.png, images/spinner.gif: Added to repository.
* include/javascript/jquery.form.js: Added to repository. jQuery form
plugin.
* include/javascript/jquery.pandora.js: Added to repository. Special
Pandora addons for jQuery library.
* include/javascript/pandora.js: Added an extension to Array
javascript objects to check if an array has an element.
* include/styles/pandora.css: Added styling for new module editors.
* include/functions_db.php: Added get_moduletype_description().
* index.php: Added Pandora jQuery extensions.
* pandoradb.sql, pandoradb_migrate_20_to_21.sql: Removed alert_text
useless field from talert_templates.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1417 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-02-02 16:40:31 +01:00
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
table#simple select#select_snmp_oid,
|
2009-05-22 11:08:55 +02:00
|
|
|
table#simple select#id_plugin,
|
|
|
|
table#network_component select#id_plugin {
|
2009-02-02 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/configurar_agente.php,
godmode/agentes/module_manager.php,
godmode/agentes/module_manager_editor.php,
godmode/agentes/module_manager_editor_data.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_prediction.php,
godmode/agentes/module_manager_editor_wmi.php: Agent module editions
rewritten. The interface should be clearer now and SNMP walking much
more faster, since it's done with AJAX. Some cleanup might be needed
yet.
* godmode/agentes/module_manager_editor_common.php: Added to
repository. Common part for agent module editors.
* images/edit.png, images/spinner.gif: Added to repository.
* include/javascript/jquery.form.js: Added to repository. jQuery form
plugin.
* include/javascript/jquery.pandora.js: Added to repository. Special
Pandora addons for jQuery library.
* include/javascript/pandora.js: Added an extension to Array
javascript objects to check if an array has an element.
* include/styles/pandora.css: Added styling for new module editors.
* include/functions_db.php: Added get_moduletype_description().
* index.php: Added Pandora jQuery extensions.
* pandoradb.sql, pandoradb_migrate_20_to_21.sql: Removed alert_text
useless field from talert_templates.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1417 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-02-02 16:40:31 +01:00
|
|
|
width: 270px;
|
|
|
|
}
|
2009-06-09 16:29:03 +02:00
|
|
|
table#simple select#prediction_id_group,
|
|
|
|
table#simple select#prediction_id_agent,
|
|
|
|
table#simple select#prediction_module {
|
|
|
|
width: 50%;
|
|
|
|
display: block;
|
|
|
|
}
|
2009-02-02 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/configurar_agente.php,
godmode/agentes/module_manager.php,
godmode/agentes/module_manager_editor.php,
godmode/agentes/module_manager_editor_data.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_prediction.php,
godmode/agentes/module_manager_editor_wmi.php: Agent module editions
rewritten. The interface should be clearer now and SNMP walking much
more faster, since it's done with AJAX. Some cleanup might be needed
yet.
* godmode/agentes/module_manager_editor_common.php: Added to
repository. Common part for agent module editors.
* images/edit.png, images/spinner.gif: Added to repository.
* include/javascript/jquery.form.js: Added to repository. jQuery form
plugin.
* include/javascript/jquery.pandora.js: Added to repository. Special
Pandora addons for jQuery library.
* include/javascript/pandora.js: Added an extension to Array
javascript objects to check if an array has an element.
* include/styles/pandora.css: Added styling for new module editors.
* include/functions_db.php: Added get_moduletype_description().
* index.php: Added Pandora jQuery extensions.
* pandoradb.sql, pandoradb_migrate_20_to_21.sql: Removed alert_text
useless field from talert_templates.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1417 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-02-02 16:40:31 +01:00
|
|
|
table#simple input#text-plugin_parameter,
|
|
|
|
table#simple input#text-snmp_oid,
|
2009-02-16 13:18:42 +01:00
|
|
|
table#source_table select,
|
|
|
|
table#destiny_table select,
|
2009-02-16 17:23:30 +01:00
|
|
|
table#target_table select,
|
|
|
|
table#filter_compound_table select,
|
2009-02-19 Esteban Sanchez <estebans@artica.es>
* include/functions_ui.php: Added require_css_file(),
require_javascript_file() and require_jquery_file() to add CSS,
javascript and jQuery files to the header easily without changing
config object. A path parameter is addded to allow the use on
enterprise code.
* include/functions_db.php: Added
get_db_value_filter(), get_db_all_rows_filter() and
process_sql_delete(). Fixed delete_agent() style and use these
functions. Added process_page_head() from functions_ui.php and changed
a bit the config javascript object part.
* include/functions_custom_graphs.php: Get results indexed by id on
get_user_custom_graphs().
* include/functions.php: Moved process_page_head to functions_ui.php.
* godmode/agentes/manage_delete.php: New interface to perform massive
agents deletion.
* godmode/menu.php: Added new option to massive agents deletion.
* general/main_menu.php, godmode/agentes/manage_config.php,
godmode/agentes/module_manager_editor.php,
godmode/agentes/planned_downtime.php,
godmode/alerts/alert_compounds.php, godmode/alerts/alert_list.php,
godmode/alerts/configure_alert_compound.php,
godmode/alerts/configure_alert_template.php,
godmode/reporting/map_builder.php, operation/agentes/networkmap.php,
operation/reporting/reporting_viewer.php,
operation/visual_console/render_view.php: Use new functions in include
CSS and javascript files.
* index.php: Bit of style when printing the header so the HTML can be
readed easily in a editor.
* include/javascript/pandora.js: Added a variable to determine the
enterprise directory.
* include/styles/pandora.css: Added style for manage_delete.php
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1467 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-02-19 17:10:04 +01:00
|
|
|
table#filter_compound_table #text-search,
|
|
|
|
table#delete_table select {
|
2009-02-02 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/configurar_agente.php,
godmode/agentes/module_manager.php,
godmode/agentes/module_manager_editor.php,
godmode/agentes/module_manager_editor_data.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_prediction.php,
godmode/agentes/module_manager_editor_wmi.php: Agent module editions
rewritten. The interface should be clearer now and SNMP walking much
more faster, since it's done with AJAX. Some cleanup might be needed
yet.
* godmode/agentes/module_manager_editor_common.php: Added to
repository. Common part for agent module editors.
* images/edit.png, images/spinner.gif: Added to repository.
* include/javascript/jquery.form.js: Added to repository. jQuery form
plugin.
* include/javascript/jquery.pandora.js: Added to repository. Special
Pandora addons for jQuery library.
* include/javascript/pandora.js: Added an extension to Array
javascript objects to check if an array has an element.
* include/styles/pandora.css: Added styling for new module editors.
* include/functions_db.php: Added get_moduletype_description().
* index.php: Added Pandora jQuery extensions.
* pandoradb.sql, pandoradb_migrate_20_to_21.sql: Removed alert_text
useless field from talert_templates.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1417 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-02-02 16:40:31 +01:00
|
|
|
width: 100%;
|
|
|
|
}
|
2009-02-17 13:17:10 +01:00
|
|
|
table#simple select#network_component_group,
|
|
|
|
table#simple select#network_component {
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
table#simple span#component_group,
|
|
|
|
table#simple span#component {
|
|
|
|
width: 45%;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
2009-06-09 16:29:03 +02:00
|
|
|
table#simple label {
|
|
|
|
display: inline;
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
2009-02-02 Esteban Sanchez <estebans@artica.es>
* godmode/agentes/configurar_agente.php,
godmode/agentes/module_manager.php,
godmode/agentes/module_manager_editor.php,
godmode/agentes/module_manager_editor_data.php,
godmode/agentes/module_manager_editor_network.php,
godmode/agentes/module_manager_editor_plugin.php,
godmode/agentes/module_manager_editor_prediction.php,
godmode/agentes/module_manager_editor_wmi.php: Agent module editions
rewritten. The interface should be clearer now and SNMP walking much
more faster, since it's done with AJAX. Some cleanup might be needed
yet.
* godmode/agentes/module_manager_editor_common.php: Added to
repository. Common part for agent module editors.
* images/edit.png, images/spinner.gif: Added to repository.
* include/javascript/jquery.form.js: Added to repository. jQuery form
plugin.
* include/javascript/jquery.pandora.js: Added to repository. Special
Pandora addons for jQuery library.
* include/javascript/pandora.js: Added an extension to Array
javascript objects to check if an array has an element.
* include/styles/pandora.css: Added styling for new module editors.
* include/functions_db.php: Added get_moduletype_description().
* index.php: Added Pandora jQuery extensions.
* pandoradb.sql, pandoradb_migrate_20_to_21.sql: Removed alert_text
useless field from talert_templates.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1417 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2009-02-02 16:40:31 +01:00
|
|
|
.clickable {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2009-02-11 17:55:04 +01:00
|
|
|
table#agent_list tr, table.alert_list tr {
|
2009-02-04 17:07:43 +01:00
|
|
|
vertical-align: top;
|
|
|
|
}
|
2011-07-06 13:57:27 +02:00
|
|
|
.toggle { border-collapse: collapse;}
|
|
|
|
.toggle td { border-left: 1px solid #D3D3D3;}
|
|
|
|
|
2009-02-11 17:55:04 +01:00
|
|
|
ul.actions_list {
|
|
|
|
list-style-image: url(../../images/arrow.png);
|
|
|
|
list-style-position: inside;
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
div.loading {
|
|
|
|
background-color: #FFF1A8;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
padding: 5px;
|
|
|
|
text-align: center;
|
|
|
|
font-style: italic;
|
|
|
|
width: 95%;
|
|
|
|
}
|
|
|
|
div.loading img {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
/* Tablesorter jQuery pager */
|
|
|
|
div.pager {
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
div.pager img{
|
|
|
|
position: relative;
|
|
|
|
top: 4px;
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
div.pager input {
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
.pagedisplay {
|
|
|
|
border: 0;
|
|
|
|
width: 35px;
|
|
|
|
}
|
|
|
|
/* Steps style */
|
|
|
|
ol.steps {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
2009-07-28 12:52:40 +02:00
|
|
|
list-style-position: outside;
|
2009-02-11 17:55:04 +01:00
|
|
|
}
|
|
|
|
ol.steps li {
|
|
|
|
float: left;
|
|
|
|
background-color: #efefef;
|
|
|
|
padding: 5px;
|
|
|
|
margin-left: 5px;
|
|
|
|
width: 150px;
|
|
|
|
}
|
|
|
|
ol.steps li a {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
ol.steps li.visited a {
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
ol.steps li span {
|
|
|
|
font-weight: normal;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
ol.steps li span {
|
|
|
|
color: #777;
|
|
|
|
}
|
|
|
|
ol.steps li.visited span {
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
ol.steps li.current {
|
|
|
|
border-left: 5px solid #778866;
|
|
|
|
margin-left: 0;
|
|
|
|
font-weight: bold;
|
|
|
|
background-color: #E9F3D2;
|
|
|
|
}
|
|
|
|
ol.steps li.visited {
|
|
|
|
color: #999 !important;
|
|
|
|
}
|
|
|
|
|
2009-02-16 13:18:42 +01:00
|
|
|
fieldset {
|
2012-04-18 10:08:04 +02:00
|
|
|
background-color:#fafafa;
|
|
|
|
border: 1px solid #f2f2f2;
|
|
|
|
padding:0.5em;
|
|
|
|
margin-top:0.5em;
|
|
|
|
margin-right: -1px;
|
|
|
|
margin-bottom:1em;
|
|
|
|
position:relative;
|
|
|
|
}
|
|
|
|
fieldset legend {
|
2012-04-30 21:22:07 +02:00
|
|
|
font-size:1.1em;
|
2012-04-18 10:08:04 +02:00
|
|
|
font-weight:bold;
|
|
|
|
#color:#3f4e2f;
|
2012-04-30 21:22:07 +02:00
|
|
|
line-height: 20px;
|
2012-04-18 10:08:04 +02:00
|
|
|
color:#000;
|
|
|
|
#top:-2em;
|
2009-02-16 13:18:42 +01:00
|
|
|
}
|
2012-04-18 10:08:04 +02:00
|
|
|
|
|
|
|
fieldset .databox {
|
|
|
|
border: 0px solid;
|
|
|
|
}
|
|
|
|
|
2009-02-18 13:29:30 +01:00
|
|
|
fieldset legend span,
|
|
|
|
span#latest_value {
|
2009-02-16 13:18:42 +01:00
|
|
|
font-style:italic;
|
2009-02-18 13:29:30 +01:00
|
|
|
}
|
|
|
|
span#latest_value span#value {
|
|
|
|
font-style:normal;
|
2009-02-16 13:18:42 +01:00
|
|
|
}
|
2009-02-16 17:23:30 +01:00
|
|
|
form#filter_form {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
2009-02-18 13:29:30 +01:00
|
|
|
ul.action_list {
|
|
|
|
margin: 0;
|
|
|
|
list-style: none inside url(../../images/arrow.png);
|
|
|
|
}
|
|
|
|
ul.action_list li div {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
2009-03-16 12:06:00 +01:00
|
|
|
span.action_name {
|
2011-07-06 13:57:27 +02:00
|
|
|
float: none;
|
2009-03-16 12:06:00 +01:00
|
|
|
}
|
2009-02-18 13:29:30 +01:00
|
|
|
div.actions_container {
|
|
|
|
overflow:auto;
|
|
|
|
width: 100%;
|
|
|
|
max-height: 200px;
|
|
|
|
}
|
|
|
|
div.actions_container label {
|
|
|
|
display: inline;
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
2009-03-16 12:06:00 +01:00
|
|
|
a.add_action {
|
|
|
|
clear: both;
|
|
|
|
display: block;
|
|
|
|
}
|
2009-02-25 13:24:06 +01:00
|
|
|
|
2009-02-12 22:04:02 +01:00
|
|
|
/* timeEntry styles */
|
|
|
|
.timeEntry_control {
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-left: 2px;
|
|
|
|
}
|
2009-03-03 16:48:59 +01:00
|
|
|
div#steps_clean {
|
|
|
|
clear:both;
|
|
|
|
}
|
2009-04-01 10:04:49 +02:00
|
|
|
div#event_control {
|
|
|
|
clear:right;
|
|
|
|
}
|
2009-05-13 19:00:58 +02:00
|
|
|
|
2009-06-09 13:25:47 +02:00
|
|
|
/* Autocomplete styles */
|
|
|
|
.ac_results {
|
|
|
|
padding: 0px;
|
|
|
|
border: 1px solid black;
|
|
|
|
background-color: white;
|
|
|
|
overflow: hidden;
|
|
|
|
z-index: 99999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ac_results ul {
|
|
|
|
width: 100%;
|
|
|
|
list-style-position: outside;
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ac_results li {
|
|
|
|
margin: 0px;
|
|
|
|
padding: 2px 5px;
|
|
|
|
cursor: default;
|
|
|
|
display: block;
|
|
|
|
/*
|
|
|
|
if width will be 100% horizontal scrollbar will apear
|
|
|
|
when scroll mode will be used
|
|
|
|
*/
|
|
|
|
/*width: 100%;*/
|
|
|
|
font: menu;
|
|
|
|
font-size: 12px;
|
|
|
|
/*
|
|
|
|
it is very important, if line-height not setted or setted
|
|
|
|
in relative units scroll will be broken in firefox
|
|
|
|
*/
|
|
|
|
line-height: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ac_loading {
|
|
|
|
background: white url('../images/loading.gif') right center no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ac_over {
|
|
|
|
background-color: #efefef;
|
|
|
|
}
|
|
|
|
span.ac_extra_field,
|
|
|
|
span.ac_extra_field strong {
|
|
|
|
font-style: italic;
|
|
|
|
font-size: 9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-13 19:00:58 +02:00
|
|
|
div#pandora_logo_header {
|
2010-05-24 18:17:21 +02:00
|
|
|
/* Put here your company logo (139x60 pixels) like this: */
|
2009-05-13 19:00:58 +02:00
|
|
|
/* background: url(../../images/MiniLogoArtica.jpg); */
|
|
|
|
background: url(../../images/pandora_logo_head.png);
|
|
|
|
background-position: 0% 0%;
|
|
|
|
width: 139px;
|
|
|
|
height: 60px;
|
|
|
|
float: left;
|
|
|
|
}
|
2009-09-25 18:04:14 +02:00
|
|
|
|
|
|
|
.disabled_module {
|
|
|
|
color: #aaa;
|
|
|
|
}
|
2010-06-07 17:22:29 +02:00
|
|
|
div.warn {
|
|
|
|
background: url(../../images/info.png) no-repeat;
|
|
|
|
color: #ac4444;
|
|
|
|
margin-top: 7px;
|
|
|
|
padding: 2px 1px 6px 25px;
|
|
|
|
}
|
2011-06-28 15:31:52 +02:00
|
|
|
|
|
|
|
.menu li, .menu li.selected, .menu li.not_selected {
|
|
|
|
display: block;
|
|
|
|
min-height: 20px;
|
|
|
|
border: 0px;
|
|
|
|
margin-bottom: 1px;
|
|
|
|
-moz-border-radius: 4px;
|
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2011-07-06 13:57:27 +02:00
|
|
|
|
|
|
|
/* Pandora width style theme */
|
|
|
|
|
|
|
|
div#container {
|
2012-04-16 13:24:47 +02:00
|
|
|
width: 100%;
|
2011-07-06 13:57:27 +02:00
|
|
|
}
|
|
|
|
div#page {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
div#main {
|
|
|
|
width: auto;
|
|
|
|
float: none;
|
|
|
|
padding-left: 0px;
|
|
|
|
padding-top: 0px;
|
|
|
|
padding-bottom: 20px;
|
|
|
|
margin-left: 175px;
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
div#head {
|
|
|
|
width: auto;
|
2012-05-04 10:43:26 +02:00
|
|
|
height: auto;
|
2012-04-30 21:22:07 +02:00
|
|
|
background-color: #000;
|
2012-05-04 10:43:26 +02:00
|
|
|
background-image: url(../../images/header_f2.png);
|
2011-07-06 13:57:27 +02:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2011-07-06 13:57:27 +02:00
|
|
|
div#foot {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
ol.steps {
|
|
|
|
margin-bottom: 70px;
|
|
|
|
}
|
|
|
|
div#steps_clean {
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
#menu_tab_frame, #menu_tab_frame_view {
|
|
|
|
width: 100%;
|
|
|
|
padding-right: 28px;
|
|
|
|
margin-left: -8px;
|
|
|
|
}
|
|
|
|
div#events_list {
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
span#logo_text1 {
|
|
|
|
font: bolder 3em Arial, Sans-serif;
|
|
|
|
letter-spacing: -2px;
|
|
|
|
color: #eee;
|
|
|
|
}
|
|
|
|
span#logo_text2 {
|
|
|
|
font: 3em Arial, Sans-serif;
|
|
|
|
letter-spacing: -2px;
|
|
|
|
color: #aaa;
|
|
|
|
}
|
|
|
|
div#logo_text3 {
|
|
|
|
text-align: right;
|
|
|
|
font: 2em Arial, Sans-serif;
|
|
|
|
letter-spacing: 6px;
|
|
|
|
color: #aaa;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-left: 4px;
|
|
|
|
padding-top: 0px;
|
|
|
|
}
|
2011-08-08 11:50:41 +02:00
|
|
|
.pagination {
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
2011-09-06 15:43:44 +02:00
|
|
|
|
|
|
|
/*CALENDAR TOOLTIP STYLE*/
|
|
|
|
|
|
|
|
/* Calendar background */
|
|
|
|
table.scw {
|
2011-09-06 16:58:09 +02:00
|
|
|
background-color: #daedae;
|
2011-09-06 15:43:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Week number heading */
|
|
|
|
td.scwWeekNumberHead {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
2011-09-06 16:58:09 +02:00
|
|
|
td.scwWeek {
|
|
|
|
color: #000 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Today selector */
|
2011-09-06 15:43:44 +02:00
|
|
|
td.scwFoot {
|
2011-09-06 16:58:09 +02:00
|
|
|
background-color: #daedae;
|
|
|
|
color: #000;
|
2011-09-06 15:43:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
td.scwFootDisabled {
|
|
|
|
background-color: #000;
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
tfoot.scwFoot {
|
2011-09-06 16:58:09 +02:00
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.scwFoot :hover{
|
|
|
|
color: #FFA500 !important;
|
|
|
|
}
|
|
|
|
|
2011-12-13 10:13:28 +01:00
|
|
|
/* Cells divs to set individual styles with the table objects */
|
|
|
|
div.cellBold {
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.cellCenter {
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.cellWhite {
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
background: #fff;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.cellNormal {
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
background: #008e00;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.cellCritical {
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
background: #cc0000;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.cellWarning {
|
2012-04-12 14:38:42 +02:00
|
|
|
width:100%;
|
2011-12-13 10:13:28 +01:00
|
|
|
height:100%;
|
|
|
|
background: #fce94f;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.cellUnknown {
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
background: #babdb6;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.cellNotInit {
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
background: #729fcf;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.cellAlert {
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
background: #ffa300;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.cellBorder1 {
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.cellBig {
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
2012-04-12 14:38:42 +02:00
|
|
|
|
|
|
|
.info_box {
|
|
|
|
background: #EBEBEB;
|
|
|
|
margin: 10px auto;
|
|
|
|
padding: 5px;
|
|
|
|
border: 1px solid #A8A8A8;
|
|
|
|
width: 85% !important;
|
2012-04-16 13:24:47 +02:00
|
|
|
-moz-box-shadow: 0px 2px 2px #010E1B !important;
|
|
|
|
-webkit-box-shadow: 0px 2px 2px #010E1B !important;
|
|
|
|
box-shadow: 0px 2px 2px #010E1B !important;
|
2012-04-12 14:38:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.info_box .title * {
|
|
|
|
font-size: 10pt !important;
|
|
|
|
font-weight: bolder;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info_box .icon {
|
|
|
|
width: 30px !important;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
|
|
|
/* Standard styles for status colos (groups, events, backgrounds...) */
|
|
|
|
|
|
|
|
|
|
|
|
tr.group_view_crit, .group_view_crit {
|
|
|
|
background-color: #FA3030;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr.group_view_norm, .group_view_norm {
|
|
|
|
background-color: #ffffff;
|
|
|
|
}
|
|
|
|
tr.group_view_ok, .group_view_ok {
|
|
|
|
background-color: #00C000;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr.group_view_warn, .group_view_warn, tr.group_view_warn.a, a.group_view_warn, tr.a.group_view_warn {
|
|
|
|
background-color: #F5E535;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.group_view_warn {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr.group_view_alrm, .group_view_alrm {
|
|
|
|
background-color: #ED8701;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr.group_view_unk, .group_view_unk {
|
|
|
|
background-color: #C4C4C4;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr.group_view_data, .group_view_data {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.group_view_data_unk {
|
|
|
|
color: #303030;
|
|
|
|
}
|
|
|
|
|
|
|
|
.group_view_data_ok{
|
|
|
|
color: #00C000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.group_view_data_crit {
|
|
|
|
color: #5C0000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.group_view_data_alrm {
|
|
|
|
color: #5C1D00;
|
|
|
|
}
|
|
|
|
|
|
|
|
.group_view_data_warn {
|
|
|
|
color: #5C5900;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* classes for event priorities. Sits now in functions.php */
|
|
|
|
.datos_green, .datos_greenf9, .datos_green a, .datos_greenf9 a {
|
|
|
|
background-color: #52A000;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.datos_red, .datos_redf9, .datos_red a, .datos_redf9 a{
|
|
|
|
background-color: #FF3E41;
|
|
|
|
color: #fff !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.datos_yellow, .datos_yellowf9 {
|
|
|
|
background-color: #F5E535;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
a.datos_blue, .datos_bluef9, .datos_blue {
|
|
|
|
background-color: #77E2F2;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
.datos_grey, .datos_greyf9 {
|
|
|
|
background-color: #E4E4E4;
|
|
|
|
}
|
|
|
|
td.datos_greyf9, td.datos_bluef9, td.datos_greenf9, td.datos_redf9, td.datos_yellowf9 {
|
|
|
|
padding: 5px 5px 5px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu li.selected {
|
2012-05-08 17:43:45 +02:00
|
|
|
background-color: #B1B1B1 !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu li {
|
|
|
|
background-color: #fff !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.submenu li a{
|
2012-05-08 17:43:45 +02:00
|
|
|
background-color: #E4E4E4 !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu li a:hover,
|
|
|
|
.submenu li a:hover {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.is_submenu2 li {
|
2012-05-03 15:57:55 +02:00
|
|
|
background-color: #ff0000;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.is_submenu2 {
|
2012-05-08 17:43:45 +02:00
|
|
|
background-color: #222222 !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu li.submenu_selected a {
|
|
|
|
background-color: #C5C5C5 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.operation.ul, ul.operation .operation ul {
|
|
|
|
background-color: #00ff00 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu ul {
|
|
|
|
background-color: #DEDEDE !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu li, .menu li.selected, .menu .li.not_selected {
|
|
|
|
border-radius: 0px 0px 0px 0px;
|
|
|
|
background-color: #EBEBEB !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menu_tab li.separator {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
input#text-id_parent.ac_input, input, textarea, select {
|
|
|
|
background-color: #ffffff !important;
|
|
|
|
border: 1px solid #cbcbcb;
|
2012-05-03 15:57:55 +02:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|