2015-04-09 15:04:23 +02: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
|
|
|
|
2015-01-19 13:32:11 +01:00
|
|
|
/* Tree view styles */
|
|
|
|
@import url(tree.css);
|
2015-09-07 11:50:16 +02:00
|
|
|
@import url(fixed-bottom-box.css);
|
2015-01-19 13:32:11 +01:00
|
|
|
|
2007-02-23 10:08:26 +01:00
|
|
|
* {
|
2014-06-04 16:05:20 +02:00
|
|
|
font-family: verdana, sans-serif;
|
2014-06-03 18:59:55 +02:00
|
|
|
letter-spacing: 0.03pt;
|
2007-05-24 23:06:42 +02:00
|
|
|
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 {
|
2015-04-01 13:24:53 +02:00
|
|
|
background-color: #FFF;
|
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 {
|
2015-03-26 13:12:48 +01:00
|
|
|
background: #FFF;
|
2012-04-30 21:22:07 +02:00
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2015-10-14 11:29:18 +02:00
|
|
|
form {
|
|
|
|
margin-block-end: 0px
|
|
|
|
}
|
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;
|
|
|
|
}
|
2013-04-17 10:21:22 +02:00
|
|
|
input {
|
2007-05-07 17:32:03 +02:00
|
|
|
padding: 2px 3px 4px 3px;
|
2013-04-17 10:21:22 +02:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2014-05-29 12:32:52 +02:00
|
|
|
|
|
|
|
input[type='checkbox'] {
|
|
|
|
display: inline !important;
|
|
|
|
}
|
|
|
|
|
2013-04-17 10:21:22 +02:00
|
|
|
select {
|
|
|
|
padding: 2px 3px 3px 3px;
|
|
|
|
vertical-align: middle;
|
2007-04-18 11:58:26 +02:00
|
|
|
}
|
2009-01-26 17:48:22 +01:00
|
|
|
input.button {
|
2015-04-09 15:04:23 +02:00
|
|
|
font-family: Arial,Sans-serif;
|
2013-04-10 09:57:54 +02:00
|
|
|
border: 4px solid #ccc;
|
2009-01-26 17:48:22 +01:00
|
|
|
background: #fff;
|
2015-04-09 15:04:23 +02:00
|
|
|
padding: 2px 3px;
|
2007-04-18 11:58:26 +02:00
|
|
|
margin: 10px 15px;
|
|
|
|
}
|
2013-10-07 10:38:41 +02:00
|
|
|
|
|
|
|
input[type=submit], input[type=button] {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2007-04-18 11:58:26 +02:00
|
|
|
select {
|
2014-08-26 14:22:33 +02:00
|
|
|
border: 1px solid #ddd;
|
2007-04-18 11:58:26 +02:00
|
|
|
}
|
|
|
|
checkbox {
|
|
|
|
padding: 4px;
|
2014-08-26 14:22:33 +02:00
|
|
|
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;
|
2015-04-21 17:26:20 +02:00
|
|
|
color: #3F3F3F;
|
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 {
|
2015-04-21 17:26:20 +02:00
|
|
|
margin-bottom: 10px;
|
2007-05-27 04:55:55 +02:00
|
|
|
font-size: 13px;
|
2013-05-23 17:42:32 +02:00
|
|
|
color: #3F3F3F;
|
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 {
|
2013-05-23 17:42:32 +02:00
|
|
|
color: #3F3F3F;
|
2007-02-23 10:08:26 +01:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
a:hover {
|
2015-04-22 16:46:08 +02:00
|
|
|
color: #373737;
|
2007-02-23 10:08:26 +01:00
|
|
|
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;
|
|
|
|
}
|
2013-04-22 12:31:20 +02:00
|
|
|
h1#log_title {
|
2007-05-27 04:55:55 +02:00
|
|
|
font-size: 18px;
|
|
|
|
margin-bottom: 0px;
|
2015-04-28 15:29:15 +02:00
|
|
|
color: #FFF !important;
|
2016-06-20 19:05:21 +02:00
|
|
|
width:300px;
|
2013-04-22 12:31:20 +02:00
|
|
|
}
|
|
|
|
div#log_msg {
|
2014-08-26 14:22:33 +02:00
|
|
|
display: none;
|
2013-04-22 12:31:20 +02:00
|
|
|
}
|
|
|
|
div#error_buttons {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
div#error_buttons a{
|
|
|
|
margin: 14px;
|
|
|
|
}
|
2012-04-12 11:26:51 +02:00
|
|
|
|
2015-02-03 13:37:56 +01:00
|
|
|
#noaccess {
|
|
|
|
position: relative;
|
|
|
|
margin-top:25px;
|
|
|
|
left: 15px;
|
|
|
|
padding-top: 5px;
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
border-top-left-radius: 2px;
|
|
|
|
border-top-right-radius: 2px;
|
|
|
|
border-bottom-left-radius: 2px;
|
|
|
|
border-bottom-right-radius: 2px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2015-02-03 13:37:56 +01:00
|
|
|
|
|
|
|
#noaccess-title {
|
|
|
|
color: #FFF;
|
|
|
|
font-weight: bold;
|
|
|
|
padding-top: 5px;
|
|
|
|
margin-left: 5px;
|
|
|
|
background: none repeat scroll 0% 0% #82B92E;
|
|
|
|
border-top-left-radius: 2px;
|
|
|
|
border-top-right-radius: 2px;
|
|
|
|
border-bottom-left-radius: 2px;
|
|
|
|
border-bottom-right-radius: 2px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#noaccess-text {
|
|
|
|
font-size: 12px;
|
|
|
|
text-align: justify;
|
|
|
|
padding-top: 25px;
|
|
|
|
padding-right: 50px;
|
|
|
|
float:right;
|
|
|
|
}
|
|
|
|
|
|
|
|
#noaccess-image {
|
|
|
|
position: relative;
|
|
|
|
left: 10px;
|
|
|
|
top: 10px;
|
|
|
|
float:left;
|
|
|
|
}
|
|
|
|
|
2007-02-23 10:08:26 +01:00
|
|
|
div#activity{
|
2013-02-26 17:10:02 +01:00
|
|
|
padding-top: 0px;
|
2007-02-23 10:08:26 +01:00
|
|
|
padding-bottom: 18px;
|
|
|
|
}
|
2017-02-23 12:26:48 +01:00
|
|
|
div#activity table td > img {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2007-02-23 10:08:26 +01:00
|
|
|
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;
|
2015-03-26 13:12:48 +01:00
|
|
|
min-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;
|
2015-04-01 12:09:23 +02:00
|
|
|
height: 100%;
|
2015-03-26 13:12:48 +01: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;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2007-05-18 11:29:54 +02:00
|
|
|
div#main {
|
2015-04-10 09:29:33 +02:00
|
|
|
width: auto;
|
2016-10-03 12:27:59 +02:00
|
|
|
margin: 0px 0% 0px 0%;
|
|
|
|
float: left;
|
2015-04-10 09:29:33 +02:00
|
|
|
position: relative;
|
|
|
|
min-height: 850px;
|
2016-10-03 12:27:59 +02:00
|
|
|
margin-left:60px;
|
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
|
|
|
}
|
2013-10-02 16:51:02 +02:00
|
|
|
div#main_help div.databox, .license_databox {
|
2013-04-23 16:57:29 +02:00
|
|
|
background: F3F3F3;
|
|
|
|
-moz-border-radius: 8px;
|
|
|
|
-webkit-border-radius: 8px;
|
|
|
|
border-radius: 8px;
|
|
|
|
border: 0px;
|
|
|
|
padding-left: 25px;
|
|
|
|
padding-right: 25px;
|
|
|
|
margin-top: 10px;
|
|
|
|
-moz-box-shadow: -1px 1px 6px #aaa;
|
|
|
|
-webkit-box-shadow: -1px 1px 6px #aaa;
|
|
|
|
box-shadow: -1px 1px 6px #aaa;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div#main_help div.databox h1{
|
|
|
|
padding-bottom: 0px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
font-weight: bold;
|
|
|
|
font-family: sans-serif, verdana;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#main_help div.databox h3, div#main_help div.databox h2 {
|
|
|
|
color: #6EB432;
|
|
|
|
font-family: sans-serif, verdana;
|
|
|
|
}
|
|
|
|
|
2014-03-04 15:49:56 +01:00
|
|
|
div#main_help div.databox h3 {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
2013-10-10 11:20:21 +02:00
|
|
|
div#main_help a.footer, div#main_help span {
|
2013-04-23 16:57:29 +02:00
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
|
2013-06-03 13:10:20 +02:00
|
|
|
a.footer, a.footer span{
|
2013-04-23 16:57:29 +02:00
|
|
|
font-size: 9px;
|
2013-06-03 13:10:20 +02:00
|
|
|
color: white;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div#main_help div.databox hr{
|
|
|
|
width:100%;
|
|
|
|
border: 0px;
|
|
|
|
height: 1px;
|
|
|
|
background-color: #222;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#main_help div.databox p{
|
|
|
|
line-height: 15px;
|
|
|
|
text-align: justify;
|
|
|
|
}
|
|
|
|
|
2014-05-21 12:44:36 +02:00
|
|
|
div#menu_container {
|
|
|
|
-moz-border-top-right-radius: 6px;
|
|
|
|
-webkit-border-top-right-radius: 6px;
|
|
|
|
border-top-right-radius: 6px;
|
2014-06-02 13:51:42 +02:00
|
|
|
z-index: 1010;
|
2015-04-07 09:50:46 +02:00
|
|
|
width: 40px;
|
|
|
|
height: 100%;
|
2014-05-21 12:44:36 +02:00
|
|
|
}
|
|
|
|
|
2007-05-18 11:29:54 +02:00
|
|
|
div#menu {
|
2015-04-10 09:29:33 +02:00
|
|
|
width: 45px;
|
2007-02-23 10:08:26 +01:00
|
|
|
float: left;
|
2015-04-15 09:45:13 +02:00
|
|
|
z-index: 2000;
|
2015-04-10 09:29:33 +02:00
|
|
|
position: absolute;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
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;
|
2014-08-18 14:53:59 +02:00
|
|
|
width: 100%;
|
2015-04-09 15:04:23 +02:00
|
|
|
height: 60px;
|
2013-04-10 09:57:54 +02:00
|
|
|
padding-top: 0px;
|
2015-03-26 13:12:48 +01:00
|
|
|
margin-bottom: 20px;
|
|
|
|
border-bottom-style: solid;
|
2015-06-12 15:50:46 +02:00
|
|
|
border-bottom-width: 3px;
|
|
|
|
border-color: #82B92E;
|
2015-04-06 12:44:35 +02:00
|
|
|
min-width: 882px;
|
|
|
|
background-color: #333;
|
|
|
|
color: white;
|
2007-05-07 17:32:03 +02:00
|
|
|
}
|
2009-05-13 19:00:58 +02:00
|
|
|
|
2014-08-04 18:50:36 +02:00
|
|
|
.fixed_header {
|
|
|
|
z-index: 9999;
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2007-05-18 11:29:54 +02:00
|
|
|
div#foot {
|
2013-04-23 16:57:29 +02:00
|
|
|
font-size: 6pt !important;
|
|
|
|
border-top: solid 2px #222;
|
|
|
|
padding-top: 8px;
|
2007-05-21 12:50:03 +02:00
|
|
|
padding-bottom: 5px;
|
2007-05-07 17:32:03 +02:00
|
|
|
text-align: center;
|
2013-06-03 13:10:20 +02:00
|
|
|
background: #333333;
|
2015-04-01 12:09:23 +02:00
|
|
|
height: 30px;
|
2007-05-07 17:32:03 +02:00
|
|
|
clear: both;
|
2013-04-23 16:57:29 +02:00
|
|
|
width: auto;
|
2007-05-07 17:32:03 +02:00
|
|
|
}
|
2007-02-23 10:08:26 +01:00
|
|
|
#ver {
|
|
|
|
margin-bottom: 25px;
|
|
|
|
}
|
2012-03-27 19:00:55 +02:00
|
|
|
|
2013-04-23 16:57:29 +02:00
|
|
|
/****************/
|
|
|
|
/* LOGIN STYLES */
|
|
|
|
/****************/
|
|
|
|
|
2014-06-03 18:59:55 +02:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Nunito';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
src: local('Nunito-Regular'), url(../../fonts/nunito.woff) format('woff');
|
|
|
|
}
|
|
|
|
|
2017-03-16 18:41:53 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: 'lato-thin';
|
|
|
|
src: url('../../fonts/Lato-Hairline.ttf');
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: 'lato-bolder';
|
|
|
|
src: url('../../fonts/Lato-Light.ttf');
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: 'lato-boldest';
|
|
|
|
src: url('../../fonts/Lato-Regular.ttf');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-23 16:57:29 +02:00
|
|
|
#login_body {
|
|
|
|
/* Set rules to fill background */
|
|
|
|
min-height: 100%;
|
2017-03-22 15:26:54 +01:00
|
|
|
min-width: 1200px;
|
2013-04-23 16:57:29 +02:00
|
|
|
width: 100%;
|
2015-04-24 13:45:13 +02:00
|
|
|
z-index: -9999;
|
|
|
|
position: absolute;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 1024px) { /* Specific to this particular image */
|
|
|
|
#login_body {
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -512px; /* 50% */
|
|
|
|
}
|
|
|
|
}
|
2015-04-24 13:45:13 +02:00
|
|
|
@media screen and (max-width: 1100px) { /* Specific to this particular image */
|
|
|
|
#login_body {
|
2017-03-15 10:12:18 +01:00
|
|
|
background-image: url("../../images/backgrounds/background_pandora_console_keys.jpg");
|
2015-04-24 13:45:13 +02:00
|
|
|
background-repeat: repeat;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 1400px) { /* Specific to this particular image */
|
|
|
|
#login_body {
|
2017-03-15 10:12:18 +01:00
|
|
|
background-image: url("../../images/backgrounds/background_pandora_console_keys.jpg");
|
2015-04-24 13:45:13 +02:00
|
|
|
background-repeat: repeat;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 2000px) { /* Specific to this particular image */
|
|
|
|
#login_body {
|
2017-03-15 10:12:18 +01:00
|
|
|
background-image: url("../../images/backgrounds/background_pandora_console_keys.jpg");
|
2015-04-24 13:45:13 +02:00
|
|
|
background-repeat: repeat;
|
|
|
|
}
|
|
|
|
}
|
2015-07-14 15:59:39 +02:00
|
|
|
@media screen and (min-width: 2000px) { /* Specific to this particular image */
|
2015-04-24 13:45:13 +02:00
|
|
|
#login_body {
|
2017-03-15 10:12:18 +01:00
|
|
|
background-image: url("../../images/backgrounds/background_pandora_console_keys.jpg");
|
2015-04-24 13:45:13 +02:00
|
|
|
background-repeat: repeat;
|
|
|
|
}
|
|
|
|
}
|
2013-04-23 16:57:29 +02:00
|
|
|
|
|
|
|
p.log_in {
|
2015-04-28 15:29:15 +02:00
|
|
|
color: #FFF !important;
|
2013-04-23 16:57:29 +02:00
|
|
|
padding: 0px 10px;
|
2016-06-20 19:05:21 +02:00
|
|
|
width:300px;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
2017-03-16 18:41:53 +01:00
|
|
|
|
2013-04-23 16:57:29 +02:00
|
|
|
h1#log_f {
|
|
|
|
color: #c00;
|
|
|
|
border-bottom: 1px solid #c00;
|
|
|
|
padding-bottom: 3px;
|
|
|
|
}
|
2015-04-24 13:45:13 +02:00
|
|
|
|
2013-04-23 16:57:29 +02:00
|
|
|
div#error_login {
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-left: 5px;
|
|
|
|
width: 75%;
|
|
|
|
float: right;
|
|
|
|
text-align: left;
|
|
|
|
top: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#error_login_icon {
|
|
|
|
#margin: 0 auto;
|
2015-04-09 15:04:23 +02:00
|
|
|
margin-top: 10px;
|
|
|
|
margin-right: 7px;
|
2013-04-23 16:57:29 +02:00
|
|
|
text-align: center;
|
|
|
|
#margin-left: 20px;
|
|
|
|
width: 20%;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#login_f {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 25px;
|
2013-04-22 12:31:20 +02:00
|
|
|
}
|
|
|
|
|
2014-06-04 16:05:20 +02:00
|
|
|
a:focus, input:focus, button:focus {
|
2014-06-03 18:59:55 +02:00
|
|
|
utline-width: 0;
|
|
|
|
outline: 0;
|
2013-04-22 12:31:20 +02:00
|
|
|
}
|
2017-03-15 10:12:18 +01:00
|
|
|
/*
|
2015-04-24 13:45:13 +02:00
|
|
|
DIV.login_links {
|
|
|
|
margin: 10px 0px 0px;
|
|
|
|
color: #FFF;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
DIV.login_links>a {
|
|
|
|
color: #FFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
DIV.login_button{
|
2013-04-22 12:31:20 +02:00
|
|
|
text-align:right;
|
2015-06-16 16:09:50 +02:00
|
|
|
width: 100%;
|
2015-04-24 13:45:13 +02:00
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
DIV.login_button>input{
|
|
|
|
background-color: #373737 !important;
|
|
|
|
border: 0px none;
|
|
|
|
background-image: url("../../images/input_go.png") !important;
|
|
|
|
padding-right: 25px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login_page{
|
|
|
|
height: 200px;
|
|
|
|
padding-top: 10%;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
2013-04-22 12:31:20 +02:00
|
|
|
}
|
|
|
|
|
2014-06-03 18:59:55 +02:00
|
|
|
input.next_login {
|
|
|
|
padding-right: 12px !important;
|
|
|
|
padding-left: 12px !important;
|
|
|
|
height: 23px;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 600 !important;
|
|
|
|
letter-spacing: 0.5pt;
|
|
|
|
font-size: 12px !important;
|
|
|
|
border-radius: 3px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
DIV.login_nick, DIV.login_pass {
|
2015-04-24 13:45:13 +02:00
|
|
|
text-align:left;
|
|
|
|
padding-left: 15px;
|
2015-04-28 15:29:15 +02:00
|
|
|
margin-top: 10px;
|
2015-04-24 13:45:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DIV.login_nick>input, DIV.login_pass>input {
|
2015-06-26 12:21:25 +02:00
|
|
|
height: 20px;
|
2015-04-24 13:45:13 +02:00
|
|
|
border-radius:0px;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
2015-04-28 15:29:15 +02:00
|
|
|
|
|
|
|
DIV.login_nick>input:focus,DIV.login_pass>input:focus {
|
|
|
|
outline-width: 0px;
|
2015-06-26 12:21:25 +02:00
|
|
|
border-color: #82B92E;
|
|
|
|
background-color: #82B92E;
|
|
|
|
font-size: 12px;
|
|
|
|
height: 20px;
|
|
|
|
box-shadow: 0px 0px 3px 3px #82B92E;
|
2015-04-28 15:29:15 +02:00
|
|
|
}
|
|
|
|
|
2015-04-24 13:45:13 +02:00
|
|
|
DIV.login_nick>img, DIV.login_pass>img {
|
|
|
|
vertical-align: middle;
|
2014-06-03 18:59:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DIV.login_links a {
|
|
|
|
letter-spacing: 0.8pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
DIV.login_links a:first-child {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
DIV.login_links a:last-child {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
DIV.login_nick_text {
|
|
|
|
text-align: left;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
width: 191px;
|
|
|
|
margin: 5px 0px;
|
|
|
|
font-size: 12px;
|
|
|
|
letter-spacing: 0.4pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
DIV.login_pass_text {
|
|
|
|
text-align: left;
|
|
|
|
width: 191px;
|
|
|
|
margin: 13px 0px 5px 0px;
|
|
|
|
font-size: 12px;
|
|
|
|
letter-spacing: 0.4pt;
|
2013-04-22 12:31:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DIV.login_pass {
|
2012-03-27 19:00:55 +02:00
|
|
|
}
|
|
|
|
|
2013-04-23 16:57:29 +02:00
|
|
|
input.login {
|
|
|
|
border: 0px none;
|
2014-06-03 18:59:55 +02:00
|
|
|
margin: 0px 0px;
|
2013-04-23 16:57:29 +02:00
|
|
|
width: 135px;
|
|
|
|
height: 18px;
|
2014-06-03 18:59:55 +02:00
|
|
|
font-weight: 100 !important;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2014-06-03 18:59:55 +02:00
|
|
|
letter-spacing: 0.3pt;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
input.login_user {
|
2017-03-15 10:12:18 +01:00
|
|
|
|
2015-04-24 13:45:13 +02:00
|
|
|
color: #373737 !important;
|
2014-06-03 18:59:55 +02:00
|
|
|
padding-left: 8px;
|
|
|
|
width: 179px;
|
2013-04-23 16:57:29 +02:00
|
|
|
color: #222;
|
2014-06-03 18:59:55 +02:00
|
|
|
height: 18px;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
input.login_password {
|
2017-03-15 10:12:18 +01:00
|
|
|
|
2014-06-03 18:59:55 +02:00
|
|
|
padding-left: 8px;
|
|
|
|
width: 179px;
|
2013-04-23 16:57:29 +02:00
|
|
|
color: #222;
|
2015-06-26 12:21:25 +02:00
|
|
|
height: 20px;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
2017-03-15 10:12:18 +01:00
|
|
|
*/
|
2013-04-23 16:57:29 +02:00
|
|
|
.databox_error {
|
|
|
|
width: 657px !important;
|
|
|
|
height: 400px;
|
2015-04-09 15:04:23 +02:00
|
|
|
border: none !important;
|
2013-04-23 16:57:29 +02:00
|
|
|
background-color: #fafafa;
|
2015-04-09 15:04:23 +02:00
|
|
|
background: url(../../images/splash_error.png) no-repeat;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
2012-03-27 19:00:55 +02:00
|
|
|
#ver_num {
|
2015-04-24 13:45:13 +02:00
|
|
|
margin: 0px auto;
|
|
|
|
width: 100%;
|
2014-06-03 18:59:55 +02:00
|
|
|
position: absolute;
|
|
|
|
bottom: 10px;
|
2015-04-24 13:45:13 +02:00
|
|
|
color: #FFF;
|
|
|
|
text-align: center;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2013-04-23 16:57:29 +02:00
|
|
|
|
2014-06-03 18:59:55 +02:00
|
|
|
input:-webkit-autofill {
|
|
|
|
#-webkit-box-shadow: 0 0 0px 1000px #DDD inset;
|
|
|
|
}
|
2013-04-23 16:57:29 +02:00
|
|
|
/***********************/
|
|
|
|
/* END OF LOGIN STYLES */
|
|
|
|
/***********************/
|
|
|
|
|
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;
|
|
|
|
}
|
2012-03-27 19:00:55 +02:00
|
|
|
|
2007-02-23 10:08:26 +01:00
|
|
|
input.sub {
|
2014-08-26 14:22:33 +02:00
|
|
|
font-weight: normal;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2015-06-12 15:50:46 +02:00
|
|
|
-moz-border-radius: 2px;
|
|
|
|
-webkit-border-radius: 2px;
|
|
|
|
border-radius: 2px;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2007-05-24 23:06:42 +02:00
|
|
|
font-size: 8pt;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2014-06-02 18:57:20 +02:00
|
|
|
background-color: #333 !important;
|
|
|
|
background-repeat: no-repeat !important;
|
2015-04-28 15:29:15 +02:00
|
|
|
background-position: 92% 3px !important;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2014-06-02 18:57:20 +02:00
|
|
|
color: white !important;
|
2014-08-26 14:22:33 +02:00
|
|
|
padding: 3px 3px 5px 12px;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2014-06-02 18:57:20 +02:00
|
|
|
border-color: #333;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2010-02-10 11:16:51 +01:00
|
|
|
|
|
|
|
input.sub[disabled] {
|
2014-06-02 18:57:20 +02:00
|
|
|
color: #B4B4B4 !important;
|
|
|
|
background-color: #F3F3F3 !important;
|
|
|
|
border-color: #B6B6B6;
|
|
|
|
cursor: default;
|
2010-02-10 11:16:51 +01:00
|
|
|
}
|
|
|
|
|
2014-06-03 18:59:55 +02:00
|
|
|
input.next, input.upd, input.ok, input.wand, input.delete, input.cog,
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
input.target, input.search, input.copy, input.add, input.graph,
|
|
|
|
input.percentile, input.binary, input.camera, input.config,
|
2017-06-20 10:31:14 +02:00
|
|
|
input.cancel, input.default, input.filter, input.pdf,input.spinn {
|
2014-06-02 18:57:20 +02:00
|
|
|
padding-right: 30px;
|
|
|
|
height: 23px;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
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-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
|
2015-09-08 13:15:21 +02:00
|
|
|
input:disabled {
|
|
|
|
background-color: #DDD !important;
|
|
|
|
}
|
|
|
|
textarea:disabled {
|
|
|
|
background-color: #DDD !important;
|
|
|
|
}
|
|
|
|
select:disabled {
|
|
|
|
background-color: #DDD !important;
|
|
|
|
}
|
|
|
|
|
2014-06-03 18:59:55 +02:00
|
|
|
input.next {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_go.png) !important;
|
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 {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_update.png) !important;
|
2007-04-19 20:50:07 +02:00
|
|
|
}
|
|
|
|
input.wand {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_wand.png) !important;
|
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
|
|
|
}
|
2013-04-15 13:44:36 +02:00
|
|
|
input.wand:disabled {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_wand.disabled.png) !important;
|
2013-04-15 13:44:36 +02:00
|
|
|
}
|
2007-05-28 21:15:44 +02:00
|
|
|
input.search {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_zoom.png) !important;
|
2007-06-06 19:48:08 +02:00
|
|
|
}
|
2013-04-15 13:44:36 +02:00
|
|
|
input.search:disabled {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_zoom.disabled.png) !important;
|
2013-04-15 13:44:36 +02:00
|
|
|
}
|
2007-06-17 17:06:36 +02:00
|
|
|
input.ok {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_tick.png) !important;
|
2007-06-17 17:06:36 +02:00
|
|
|
}
|
2013-04-15 13:44:36 +02:00
|
|
|
input.ok:disabled {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_tick.disabled.png) !important;
|
2013-04-15 13:44:36 +02:00
|
|
|
}
|
2009-01-16 11:55:29 +01:00
|
|
|
input.add {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_add.png) !important;
|
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
|
|
|
}
|
2013-04-15 13:44:36 +02:00
|
|
|
input.add:disabled {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_add.disabled.png) !important;
|
2013-04-15 13:44:36 +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.cancel {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_cross.png) !important;
|
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
|
|
|
}
|
2013-04-15 13:44:36 +02:00
|
|
|
input.cancel:disabled {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_cross.disabled.png) !important;
|
2013-04-15 13:44:36 +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 {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_delete.png) !important;
|
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
|
|
|
}
|
2013-04-15 13:44:36 +02:00
|
|
|
input.delete:disabled {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_delete.disabled.png) !important;
|
2013-04-15 13:44:36 +02:00
|
|
|
}
|
2011-05-13 13:14:25 +02:00
|
|
|
input.cog {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_cog.png) !important;
|
2010-03-31 11:13:54 +02:00
|
|
|
}
|
2013-04-15 13:44:36 +02:00
|
|
|
input.cog:disabled {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_cog.disabled.png) !important;
|
2013-04-15 13:44:36 +02:00
|
|
|
}
|
2010-03-31 11:13:54 +02:00
|
|
|
input.config {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_config.png) !important;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
2013-04-15 13:44:36 +02:00
|
|
|
input.config:disabled {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_config.disabled.png) !important;
|
2013-04-15 13:44:36 +02:00
|
|
|
}
|
2013-04-11 17:41:51 +02:00
|
|
|
input.filter {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_filter.png) !important;
|
2013-04-11 17:41:51 +02:00
|
|
|
}
|
2013-04-15 13:44:36 +02:00
|
|
|
input.filter:disabled {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_filter.disabled.png) !important;
|
2013-04-15 13:44:36 +02:00
|
|
|
}
|
2013-04-11 17:41:51 +02:00
|
|
|
input.pdf {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_pdf.png) !important;
|
2013-04-11 17:41:51 +02:00
|
|
|
}
|
2013-04-15 13:44:36 +02:00
|
|
|
input.pdf:disabled {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-image: url(../../images/input_pdf.disabled.png) !important;
|
2013-04-15 13:44:36 +02:00
|
|
|
}
|
2015-04-23 17:52:16 +02:00
|
|
|
input.camera {
|
2015-06-26 08:49:51 +02:00
|
|
|
background-image: url(../../images/input_camera.png) !important;
|
2015-04-23 17:52:16 +02:00
|
|
|
}
|
2017-06-20 10:31:14 +02:00
|
|
|
input.spinn {
|
2017-06-20 15:46:35 +02:00
|
|
|
background-image: url(../../images/spinner_green.gif) !important;
|
2017-06-20 10:31:14 +02:00
|
|
|
}
|
2015-04-23 17:52:16 +02:00
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
#toolbox #auto_save {
|
|
|
|
padding-top: 5px;
|
2012-08-29 13:58:36 +02:00
|
|
|
}
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
|
|
|
|
#toolbox {
|
2013-04-10 09:57:54 +02:00
|
|
|
margin-top: 13px;
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
}
|
|
|
|
input.visual_editor_button_toolbox {
|
2015-06-12 15:50:46 +02:00
|
|
|
padding-right: 15px;
|
|
|
|
padding-top: 10px;
|
|
|
|
margin-top:5px;
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +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 {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/cross.png) no-repeat center !important;
|
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[disabled] {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/cross.disabled.png) no-repeat center !important;
|
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.graph_min {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/chart_curve.png) no-repeat center !important;
|
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.graph_min[disabled] {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/chart_curve.disabled.png) no-repeat center !important;
|
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
|
|
|
}
|
2017-10-19 10:03:53 +02:00
|
|
|
input.bars_graph_min {
|
2017-10-19 12:22:01 +02:00
|
|
|
background: #fefefe url(../../images/icono-barras-arriba.png) no-repeat center !important;
|
2017-10-19 10:03:53 +02:00
|
|
|
}
|
|
|
|
input.bars_graph_min[disabled] {
|
2017-10-24 09:24:07 +02:00
|
|
|
background: #fefefe url(../../images/icono-barras-arriba.disabled.png) no-repeat center !important;
|
2017-10-19 10:03:53 +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.percentile_min {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/chart_bar.png) no-repeat center !important;
|
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.percentile_min[disabled] {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/chart_bar.disabled.png) no-repeat center !important;
|
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
|
|
|
}
|
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 {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/percentile_item.png) no-repeat center !important;
|
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[disabled] {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/percentile_item.disabled.png) no-repeat center !important;
|
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
|
|
|
}
|
2017-07-12 11:51:00 +02:00
|
|
|
input.auto_sla_graph_min {
|
|
|
|
background: #fefefe url(../../images/auto_sla_graph.png) no-repeat center !important;
|
|
|
|
}
|
|
|
|
input.auto_sla_graph_min[disabled] {
|
|
|
|
background: #fefefe url(../../images/auto_sla_graph.disabled.png) no-repeat center !important;
|
|
|
|
}
|
2017-10-18 11:40:40 +02:00
|
|
|
input.donut_graph_min {
|
|
|
|
background: #fefefe url(../../images/icono-quesito.png) no-repeat center !important;
|
|
|
|
}
|
|
|
|
input.donut_graph_min[disabled] {
|
|
|
|
background: #fefefe url(../../images/icono-quesito.disabled.png) no-repeat center !important;
|
|
|
|
}
|
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 {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/binary.png) no-repeat center !important;
|
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[disabled] {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/binary.disabled.png) no-repeat center !important;
|
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.camera_min {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/camera.png) no-repeat center !important;
|
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.camera_min[disabled] {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/camera.disabled.png) no-repeat center !important;
|
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.config_min {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/config.png) no-repeat center !important;
|
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.config_min[disabled] {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/config.disabled.png) no-repeat center !important;
|
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.label_min {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/tag_red.png) no-repeat center !important;
|
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.label_min[disabled] {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/tag_red.disabled.png) no-repeat center !important;
|
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.icon_min {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/photo.png) no-repeat center !important;
|
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.icon_min[disabled] {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/photo.disabled.png) no-repeat center !important;
|
2010-06-06 23:01:10 +02:00
|
|
|
}
|
2017-12-01 12:14:56 +01:00
|
|
|
input.clock_min {
|
|
|
|
background: #fefefe url(../../images/clock-tab.png) no-repeat center !important;
|
|
|
|
}
|
|
|
|
input.clock_min[disabled] {
|
|
|
|
background: #fefefe url(../../images/clock-tab.disabled.png) no-repeat center !important;
|
|
|
|
}
|
2014-11-21 10:42:14 +01:00
|
|
|
input.box_item {
|
2014-11-21 13:28:11 +01:00
|
|
|
background: #fefefe url(../../images/box_item.png) no-repeat center !important;
|
2014-11-21 10:42:14 +01:00
|
|
|
}
|
|
|
|
input.box_item[disabled] {
|
2014-11-21 13:28:11 +01:00
|
|
|
background: #fefefe url(../../images/box_item.disabled.png) no-repeat center !important;
|
2014-11-21 10:42:14 +01:00
|
|
|
}
|
2014-11-24 16:40:59 +01:00
|
|
|
input.line_item {
|
|
|
|
background: #fefefe url(../../images/line_item.png) no-repeat center !important;
|
|
|
|
}
|
|
|
|
input.line_item[disabled] {
|
|
|
|
background: #fefefe url(../../images/line_item.disabled.png) no-repeat center !important;
|
|
|
|
}
|
2014-11-19 16:29:36 +01:00
|
|
|
input.copy_item {
|
|
|
|
background: #fefefe url(../../images/copy_visualmap.png) no-repeat center !important;
|
|
|
|
}
|
|
|
|
input.copy_item[disabled] {
|
|
|
|
background: #fefefe url(../../images/copy_visualmap.disabled.png) no-repeat center !important;
|
|
|
|
}
|
2012-01-30 18:19:40 +01:00
|
|
|
input.grid_min {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/grid.png) no-repeat center !important;
|
2012-01-30 18:19:40 +01:00
|
|
|
}
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
input.grid_min[disabled] {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/grid.disabled.png) no-repeat center !important;
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
}
|
2012-02-21 15:05:57 +01:00
|
|
|
input.save_min {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/file.png) no-repeat center !important;
|
2012-02-21 15:05:57 +01:00
|
|
|
}
|
|
|
|
input.save_min[disabled] {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/file.disabled.png) no-repeat center !important;
|
2012-02-21 15:05:57 +01:00
|
|
|
}
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
input.service_min {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/box.png) no-repeat center !important;
|
2012-01-30 18:19:40 +01:00
|
|
|
}
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
input.service_min[disabled] {
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #fefefe url(../../images/box.disabled.png) no-repeat center !important;
|
2011-07-06 13:57:27 +02:00
|
|
|
}
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
|
2014-03-20 Miguel de Dios <miguel.dedios@artica.es>
* images/group_green.disabled.png, images/group_green.png,
extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
godmode/reporting/visual_console_builder.editor.js,
godmode/agentes/configurar_agente.php, include/styles/pandora.css,
include/functions_networkmap.php, include/functions_agents.php,
include/functions_visual_map_editor.php,
include/functions_modules.php, include/functions_groups.php,
include/constants.php, include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php, pandoradb.sql,
pandoradb.postgreSQL.sql, pandoradb.oracle.sql: added the feature to
show the item for groups in visualmap.
Incident: #671
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9621 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-03-20 17:43:42 +01:00
|
|
|
input.group_item_min {
|
|
|
|
background: #fefefe url(../../images/group_green.png) no-repeat center !important;
|
|
|
|
}
|
|
|
|
input.group_item_min[disabled] {
|
|
|
|
background: #fefefe url(../../images/group_green.disabled.png) no-repeat center !important;
|
|
|
|
}
|
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
div#cont {
|
|
|
|
position: fixed;
|
2013-05-30 17:48:22 +02:00
|
|
|
max-height: 320px;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
|
2015-04-01 12:09:23 +02:00
|
|
|
.termframe{
|
|
|
|
background-color: #80BA27 !important;
|
|
|
|
}
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
|
2007-02-23 10:08:26 +01:00
|
|
|
table, img {
|
|
|
|
border: 0px;
|
|
|
|
}
|
2018-05-23 17:55:07 +02:00
|
|
|
table pre{
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2014-06-02 18:57:20 +02:00
|
|
|
tr:first-child>th {
|
|
|
|
background-color: #373737;
|
|
|
|
}
|
|
|
|
|
2007-06-17 17:06:36 +02:00
|
|
|
th {
|
2007-05-07 17:32:03 +02:00
|
|
|
color: #fff;
|
2014-06-02 18:57:20 +02:00
|
|
|
background-color: #666;
|
2014-08-26 14:22:33 +02:00
|
|
|
font-size: 7.5pt;
|
|
|
|
letter-spacing: 0.3pt;
|
2007-03-02 18:56:07 +01:00
|
|
|
}
|
2015-04-09 15:04:23 +02:00
|
|
|
tr.datos, tr.datost, tr.datosb , tr.datos_id,
|
|
|
|
tr.datosf9 {
|
2015-03-26 13:12:48 +01:00
|
|
|
#background-color: #eaeaea;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
2015-04-09 15:04:23 +02:00
|
|
|
tr.datos2, tr.datos2t,
|
2009-01-26 17:48:22 +01:00
|
|
|
tr.datos2b, tr.datos2_id , tr.datos2f9 {
|
2015-03-26 13:12:48 +01:00
|
|
|
#background-color: #f2f2f2;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2015-04-09 15:04:23 +02: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 {
|
2015-04-09 15:04:23 +02:00
|
|
|
#background-color: #efefef;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
/* Checkbox styles */
|
|
|
|
td input[type=checkbox]
|
|
|
|
{
|
|
|
|
/* Double-sized Checkboxes */
|
2016-10-24 13:34:08 +02:00
|
|
|
/*-ms-transform: scale(1.3); /* IE */
|
|
|
|
/*-moz-transform: scale(1.3); /* FF */
|
|
|
|
/*-o-transform: scale(1.3); /* Opera */
|
|
|
|
/*-webkit-transform: scale(1.3); /* Safari and Chrome */
|
2013-04-10 09:57:54 +02:00
|
|
|
padding: 10px;
|
2013-04-15 13:44:36 +02:00
|
|
|
margin-top: 2px;
|
2015-04-09 15:04:23 +02:00
|
|
|
display: table-cell;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2013-06-10 18:15:36 +02:00
|
|
|
td.datos3, td.datos3 * {
|
2014-06-02 18:57:20 +02:00
|
|
|
background-color: #666;
|
2013-06-10 18:15:36 +02:00
|
|
|
color: white !important;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2014-06-02 18:57:20 +02:00
|
|
|
td.datos4, 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;
|
2014-06-02 18:57:20 +02:00
|
|
|
background-color: #666;
|
|
|
|
color: white !important;
|
2009-06-24 18:04:19 +02:00
|
|
|
}
|
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
|
|
|
|
2012-11-03 17:41:26 +01:00
|
|
|
tr.disabled_row_user * {
|
|
|
|
color: grey;
|
|
|
|
}
|
|
|
|
|
2007-05-27 14:11:15 +02:00
|
|
|
.bg { /* op menu */
|
2014-08-26 14:22:33 +02:00
|
|
|
background: #82b92e;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2012-11-03 17:41: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 */
|
2013-04-10 09:57:54 +02:00
|
|
|
background: #666666;
|
2007-02-27 20:03:56 +01:00
|
|
|
}
|
|
|
|
.bg4 { /* links */
|
2013-04-10 09:57:54 +02:00
|
|
|
background-color: #989898;
|
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;
|
|
|
|
}
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02: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 {
|
2013-04-10 09:57:54 +02:00
|
|
|
padding: 6px 0px;
|
|
|
|
height: 14px;
|
|
|
|
}
|
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;
|
|
|
|
}
|
2013-05-23 17:42:32 +02:00
|
|
|
|
|
|
|
.suc * {
|
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
|
|
|
color: #5a8629;
|
|
|
|
}
|
2013-05-23 17:42:32 +02:00
|
|
|
|
|
|
|
.info *{
|
2013-05-20 10:42:02 +02:00
|
|
|
color: #006F9D;
|
|
|
|
}
|
2013-05-23 17:42:32 +02:00
|
|
|
|
|
|
|
.error *{
|
Changes some bad colors and others aesthetic changes. Thanks Carla.
2014-09-04 Miguel de Dios <miguel.dedios@artica.es>
* pandora_console/extensions/module_groups.php,
pandora_console/general/login_help_dialog.php,
pandora_console/images/close_button_dialog.png,
pandora_console/images/documentation.png,
pandora_console/images/enterprise_version.png,
pandora_console/images/error_login.png,
pandora_console/images/online_help.png,
pandora_console/images/support.png,
pandora_console/include/ajax/events.php,
pandora_console/include/constants.php,
pandora_console/include/functions_events.php,
pandora_console/include/javascript/pandora_events.js,
pandora_console/include/styles/jquery-ui-1.10.0.custom.css,
pandora_console/include/styles/pandora.css,
pandora_console/mobile/include/style/main.css,
pandora_console/operation/events/events_list.php: changes some
bad colors and others aesthetic changes. Thanks Carla.
2014-09-04 12:19:55 +02:00
|
|
|
color: #f85858;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2013-05-23 17:42:32 +02:00
|
|
|
|
2015-04-21 17:26:20 +02:00
|
|
|
.warning *{
|
|
|
|
color: #FAD403;
|
|
|
|
}
|
|
|
|
|
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 {
|
2014-04-09 16:24:20 +02:00
|
|
|
color: #fd7304;
|
2010-08-04 13:08:16 +02:00
|
|
|
}
|
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;
|
|
|
|
}
|
2014-12-01 16:37:40 +01:00
|
|
|
.blue {
|
|
|
|
color: #5AB7E5;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2007-02-23 10:08:26 +01:00
|
|
|
.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;
|
2013-04-10 09:57:54 +02:00
|
|
|
line-height: 15px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
.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-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
|
|
|
|
2014-05-20 13:27:03 +02:00
|
|
|
.alpha50 {
|
2014-03-18 Alejandro Gallardo <alejandro.gallardo@artica.es>
* pandoradb.data.oracle.sql,
pandoradb.data.postgreSQL.sql,
pandoradb.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql:
Added the table "tmodule_relationship".
* operation/agentes/estado_generalagente.php: Added a
new table to show the network interfaces of the agent.
Minor fixes.
* include/styles/pandora.css: Added properties for the
class transparent'.
* include/ajax/module.php: Fixed an error and added code
to retrieve a module autocomplete input or add, remove
or update a module relation via ajax.
* include/functions_modules.php: Added the functions
"modules_get_relations", "modules_relation_exists",
"modules_add_relation", "modules_delete_relation" and
"modules_change_relation_lock".
* godmode/agentes/module_manager_editor_common.php:
Added a table and control to show, add or delete
relations with other modules. Added the javascript
functions "change_modules_autocomplete_input",
"add_new_relation", "change_lock_relation" and
"delete_relation".
* godmode/agentes/module_manager_editor.php: Added a
line to show the module relations table and control.
* godmode/agentes/module_manager_editor_network.php:
Minor fix.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9610 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2014-03-18 12:49:33 +01:00
|
|
|
filter:alpha(opacity=50);
|
|
|
|
-moz-opacity: 0.5;
|
|
|
|
opacity: 0.5;
|
|
|
|
-khtml-opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2012-04-30 21:22:07 +02:00
|
|
|
|
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;
|
2015-04-06 12:44:35 +02:00
|
|
|
border-bottom: 1px solid #80BA27;
|
2011-06-28 16:45:10 +02:00
|
|
|
/* float:left; */
|
2015-03-26 13:12:48 +01:00
|
|
|
margin-left: 0px !important;
|
|
|
|
max-height: 31px;
|
|
|
|
min-height: 31px;
|
2014-08-26 14:22:33 +02:00
|
|
|
padding-right: 28px;
|
|
|
|
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
|
|
|
}
|
2013-04-10 09:57:54 +02:00
|
|
|
|
|
|
|
#menu_tab {
|
|
|
|
margin: 0px 0px 0px 0px !important;
|
2008-04-03 17:43:34 +02:00
|
|
|
}
|
2013-04-10 09:57:54 +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;
|
2013-04-10 09:57:54 +02:00
|
|
|
margin: 0px 0px 0px 0px;
|
2007-02-27 20:03:56 +01:00
|
|
|
}
|
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;
|
2013-04-10 09:57:54 +02:00
|
|
|
margin: 0px 0px 0px 0px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2015-04-07 09:50:46 +02:00
|
|
|
/*
|
2009-04-09 23:06:17 +02:00
|
|
|
#menu_tab li a, #menu_tab a {
|
2013-04-10 09:57:54 +02:00
|
|
|
padding: 2px 0px;
|
2007-02-27 20:03:56 +01:00
|
|
|
font-weight: bold;
|
2009-08-06 20:55:54 +02:00
|
|
|
line-height: 18px;
|
2013-04-10 09:57:54 +02:00
|
|
|
margin-left: 3px;
|
|
|
|
margin-right: 0px;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
-moz-border-top-right-radius: 5px;
|
|
|
|
-webkit-border-top-right-radius: 5px;
|
2014-08-26 14:22:33 +02:00
|
|
|
border-top-right-radius: 5px;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
-moz-border-top-left-radius: 5px;
|
|
|
|
-webkit-border-top-left-radius: 5px;
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menu_tab li>form {
|
|
|
|
padding-left: 7px;
|
|
|
|
padding-top: 4px;
|
|
|
|
}
|
2015-04-07 09:50:46 +02:00
|
|
|
*/
|
2013-04-10 09:57:54 +02: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 {
|
2014-08-26 14:22:33 +02:00
|
|
|
/*background: #82b92e;*/
|
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;
|
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;
|
2015-04-07 09:50:46 +02:00
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
2007-02-27 20:03:56 +01:00
|
|
|
}
|
2008-12-21 16:26:55 +01:00
|
|
|
#menu_tab li.nomn:hover a, #menu_tab li:hover ul a:hover {
|
2014-08-26 14:22:33 +02:00
|
|
|
/*background: #82b92e;*/
|
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 {
|
2013-04-10 09:57:54 +02:00
|
|
|
/*background: #b2b08a url("../../images/arrow.png") no-repeat right 3px;*/
|
2007-02-27 20:03:56 +01:00
|
|
|
}
|
2013-04-17 10:21:22 +02:00
|
|
|
|
2015-04-07 09:50:46 +02:00
|
|
|
#menu_tab li.nomn {
|
|
|
|
min-width: 30px;
|
|
|
|
height: 28px;
|
|
|
|
}
|
|
|
|
#menu_tab li.nomn_high {
|
2013-04-24 15:16:28 +02:00
|
|
|
min-width: 30px;
|
2013-04-17 10:21:22 +02:00
|
|
|
height: 28px;
|
|
|
|
}
|
2007-03-12 18:58:52 +01:00
|
|
|
/* TAB TITLE */
|
2013-04-10 09:57:54 +02:00
|
|
|
#menu_tab_left {
|
|
|
|
margin-left: 0px !important;
|
|
|
|
}
|
|
|
|
|
2007-05-07 17:32:03 +02:00
|
|
|
#menu_tab_left .mn, #menu_tab_left ul, #menu_tab_left .mn ul {
|
2013-04-10 09:57:54 +02:00
|
|
|
background-color: #000;
|
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;
|
2013-04-10 09:57:54 +02:00
|
|
|
margin: 0px 0px 0px 0px;
|
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;
|
2013-04-10 09:57:54 +02:00
|
|
|
height: 26px;
|
|
|
|
max-height: 26px;
|
2007-03-12 18:58:52 +01:00
|
|
|
}
|
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 {
|
|
|
|
color: #fff;
|
|
|
|
font-weight: bold;
|
2016-10-24 13:34:08 +02:00
|
|
|
font-weight: 100;
|
2007-05-27 04:55:55 +02:00
|
|
|
line-height: 18px;
|
2013-04-10 09:57:54 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2015-04-07 09:50:46 +02:00
|
|
|
#menu_tab_left li.view {
|
2014-08-26 14:22:33 +02:00
|
|
|
background: #82b92e;
|
2017-02-22 09:21:35 +01:00
|
|
|
max-width: 60%;
|
2017-02-23 09:23:27 +01:00
|
|
|
min-width: 30%;
|
2015-03-26 13:12:48 +01:00
|
|
|
padding: 5px 5px 0px;
|
|
|
|
text-align: center;
|
|
|
|
-moz-border-top-right-radius: 3px;
|
|
|
|
-webkit-border-top-right-radius: 3px;
|
2015-04-09 15:04:23 +02:00
|
|
|
border-top-right-radius: 3px;
|
|
|
|
|
2015-03-26 13:12:48 +01:00
|
|
|
-moz-border-top-left-radius: 3px;
|
|
|
|
-webkit-border-top-left-radius: 3px;
|
|
|
|
border-top-left-radius: 3px;
|
|
|
|
margin-left:0px !important;
|
2013-10-07 15:31:37 +02:00
|
|
|
overflow-y: hidden;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2015-04-07 09:50:46 +02:00
|
|
|
#menu_tab_left li.view img.bottom {
|
2013-05-23 17:42:32 +02:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
#menu_tab_frame *, #menu_tab_frame_view *{
|
2015-03-31 17:26:22 +02:00
|
|
|
#margin: 0px 0px 0px 0px !important;
|
2007-05-27 04:55:55 +02:00
|
|
|
}
|
2013-04-10 09:57:54 +02:00
|
|
|
|
2016-10-27 16:08:19 +02:00
|
|
|
|
|
|
|
#menu_tab_left li a, #menu_tab_left li span {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #fff;
|
2017-02-23 09:23:27 +01:00
|
|
|
font-size: 100%;
|
2016-10-27 16:08:19 +02:00
|
|
|
line-height: 20px;
|
|
|
|
letter-spacing:0px;
|
|
|
|
font-family: verdana, sans-serif;
|
2017-02-23 09:23:27 +01:00
|
|
|
font-weight: bold;
|
2016-10-27 16:08:19 +02:00
|
|
|
}
|
|
|
|
|
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;
|
2015-04-21 17:26:20 +02:00
|
|
|
margin-top: 0px;
|
2007-05-24 22:03:05 +02:00
|
|
|
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;
|
2015-04-15 09:45:13 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
.databox_color{
|
|
|
|
padding-top: 5px;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
2013-05-20 18:43:28 +02:00
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
table.databox {
|
|
|
|
background-color: #f9faf9;
|
2015-03-26 13:12:48 +01:00
|
|
|
border-spacing: 0px;
|
|
|
|
-moz-box-shadow: 0px 0px 0px #DDD !important;
|
|
|
|
-webkit-box-shadow: 0px 0px 0px #DDD !important;
|
|
|
|
box-shadow: 0px 0px 0px #DDD !important;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox>tbody>tr>td {
|
2015-03-26 13:12:48 +01:00
|
|
|
-moz-border-radius: 0px;
|
|
|
|
-webkit-border-radius: 0px;
|
|
|
|
border-radius: 0px;
|
2015-03-31 09:18:46 +02:00
|
|
|
border: 0px none #E2E2E2;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox>thead>tr>th, .databox>tbody>tr>th {
|
2015-04-15 09:45:13 +02:00
|
|
|
padding: 9px 7px;
|
|
|
|
font-weight: normal;
|
2013-05-23 17:42:32 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox>td {
|
2015-04-21 17:26:20 +02:00
|
|
|
#border-bottom: 1px solid #E2E2E2;
|
|
|
|
}
|
2013-05-23 17:42:32 +02:00
|
|
|
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox>th * {
|
2013-05-23 17:42:32 +02:00
|
|
|
color: #fff;
|
2013-05-20 18:43:28 +02:00
|
|
|
}
|
|
|
|
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox>th>input, .databox>th>textarea, .databox>th>select, .databox>th>select>option {
|
2014-01-21 17:42:44 +01:00
|
|
|
color: #222 !important;
|
|
|
|
}
|
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
.tabletitle {
|
2014-06-02 18:57:20 +02:00
|
|
|
color: #333;
|
2007-04-18 11:58:26 +02:00
|
|
|
}
|
2013-04-10 09:57:54 +02:00
|
|
|
|
|
|
|
.tactical_set legend{
|
2015-04-09 15:04:23 +02:00
|
|
|
text-align:left;
|
2013-05-23 17:42:32 +02:00
|
|
|
color: #3F3F3F;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tactical_set{
|
2015-03-31 09:18:46 +02:00
|
|
|
background: #FFF;
|
|
|
|
border: 1px solid #E2E2E2;
|
2015-04-15 11:28:07 +02:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: auto;
|
2012-10-01 13:15:31 +02:00
|
|
|
}
|
2012-12-10 01:05:09 +01:00
|
|
|
|
|
|
|
/* For use in Netflow */
|
|
|
|
|
|
|
|
table.databox_grid {
|
|
|
|
margin: 25px;
|
|
|
|
}
|
|
|
|
|
2016-10-19 12:45:40 +02:00
|
|
|
table.databox_grid>th {
|
2012-12-10 01:05:09 +01:00
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
2016-10-19 12:45:40 +02:00
|
|
|
table.databox_grid>td {
|
2012-12-10 01:05:09 +01:00
|
|
|
padding: 6px;
|
|
|
|
margin: 4px;
|
|
|
|
border-bottom: 1px solid #acacac;
|
|
|
|
border-right: 1px solid #acacac;
|
|
|
|
}
|
|
|
|
|
2013-04-23 16:57:29 +02:00
|
|
|
|
2012-10-01 13:15:31 +02:00
|
|
|
table.alternate tr:nth-child(odd) td{
|
2013-04-23 16:57:29 +02:00
|
|
|
background-color: #ffffff;
|
|
|
|
}
|
|
|
|
table.alternate tr:nth-child(even) td{
|
2012-10-01 13:15:31 +02:00
|
|
|
background-color: #e4e5e4;
|
2007-04-18 11:58:26 +02:00
|
|
|
}
|
2013-04-22 12:31:20 +02:00
|
|
|
|
2013-04-23 16:57:29 +02:00
|
|
|
table.rounded_cells td {
|
|
|
|
padding: 4px 4px 4px 10px;
|
|
|
|
-moz-border-radius: 6px !important;
|
|
|
|
-webkit-border-radius: 6px !important;
|
2015-04-09 15:04:23 +02:00
|
|
|
border-radius: 6px !important;
|
2012-03-30 16:42:12 +02:00
|
|
|
}
|
|
|
|
|
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;
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +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;
|
2015-07-17 09:49:44 +02:00
|
|
|
margin-top: 30px;
|
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
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 10px;
|
2015-07-17 09:49:44 +02:00
|
|
|
height: 1000px;
|
2011-08-26 11:35:15 +02:00
|
|
|
width: 98%;
|
2013-04-30 13:54:37 +02:00
|
|
|
position: static;
|
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;
|
2012-12-31 09:01:28 +01:00
|
|
|
margin-left: 30%;
|
2008-07-04 12:52:27 +02:00
|
|
|
text-align:center;
|
2012-12-31 09:01:28 +01:00
|
|
|
top: 50%;
|
2008-07-04 12:52:27 +02:00
|
|
|
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 */
|
2013-02-27 18:11:42 +01:00
|
|
|
.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
|
|
|
}
|
2013-02-27 18:11:42 +01:00
|
|
|
|
|
|
|
.med_data {
|
|
|
|
text-decoration: none; font: bold 1.5em Arial, Sans-serif;
|
|
|
|
}
|
|
|
|
|
2008-08-05 12:47:40 +02:00
|
|
|
.notify {
|
|
|
|
background-color: #f7ffa5;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 8px;
|
2013-04-10 09:57:54 +02:00
|
|
|
margin: 0px 0px 0px 0px !important;
|
2011-08-25 19:17:46 +02:00
|
|
|
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
|
|
|
}
|
2016-10-20 16:26:05 +02:00
|
|
|
table#simple{
|
|
|
|
padding: 30px;
|
|
|
|
}
|
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 {
|
2013-04-15 18:04:39 +02:00
|
|
|
color: #111;
|
2009-02-11 17:55:04 +01:00
|
|
|
}
|
|
|
|
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 {
|
2015-07-07 16:05:23 +02:00
|
|
|
background-color:#F9FAF9;
|
|
|
|
border: 1px solid #E2E2E2;
|
2012-04-18 10:08:04 +02:00
|
|
|
padding:0.5em;
|
2015-07-07 16:05:23 +02:00
|
|
|
margin-bottom:20px;
|
2012-04-18 10:08:04 +02:00
|
|
|
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;
|
2013-05-23 17:42:32 +02:00
|
|
|
color: #3F3F3F;
|
2012-04-18 10:08:04 +02:00
|
|
|
#top:-2em;
|
2009-02-16 13:18:42 +01:00
|
|
|
}
|
2012-04-18 10:08:04 +02:00
|
|
|
|
|
|
|
fieldset .databox {
|
|
|
|
border: 0px solid;
|
|
|
|
}
|
|
|
|
|
2013-05-23 17:42:32 +02:00
|
|
|
fieldset.databox {
|
|
|
|
padding: 14px !important;
|
|
|
|
}
|
|
|
|
|
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;
|
2015-04-15 09:45:13 +02:00
|
|
|
list-style: none inside circle;
|
2009-02-18 13:29:30 +01:00
|
|
|
}
|
|
|
|
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;
|
2015-04-09 15:04:23 +02:00
|
|
|
/*
|
|
|
|
if width will be 100% horizontal scrollbar will apear
|
2009-06-09 13:25:47 +02:00
|
|
|
when scroll mode will be used
|
|
|
|
*/
|
|
|
|
/*width: 100%;*/
|
|
|
|
font: menu;
|
|
|
|
font-size: 12px;
|
2015-04-09 15:04:23 +02:00
|
|
|
/*
|
|
|
|
it is very important, if line-height not setted or setted
|
2009-06-09 13:25:47 +02:00
|
|
|
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
|
|
|
|
2013-04-29 16:10:22 +02:00
|
|
|
#header_table img {
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
|
2013-04-30 09:23:40 +02:00
|
|
|
.autorefresh_disabled {
|
|
|
|
cursor: not-allowed !important;
|
|
|
|
}
|
|
|
|
|
2013-06-10 18:15:36 +02:00
|
|
|
a.autorefresh {
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#refrcounter {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
#combo_refr select {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
margin-top: 7px;
|
|
|
|
padding: 2px 1px 6px 25px;
|
|
|
|
}
|
2011-06-28 15:31:52 +02:00
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
.submenu_not_selected {
|
2017-01-26 12:10:28 +01:00
|
|
|
transition-property: background-color;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color;
|
|
|
|
-webkit-transition-duration: 0.5s;
|
|
|
|
-webkit-transition-timing-function: ease-out;
|
|
|
|
-moz-transition-property: background-color;
|
|
|
|
-moz-transition-duration: 0.5s;
|
|
|
|
-moz-transition-timing-function: ease-out;
|
|
|
|
-o-transition-property: background-color;
|
|
|
|
-o-transition-duration: 0.5s;
|
|
|
|
-o-transition-timing-function: ease-out;
|
2013-04-10 09:57:54 +02:00
|
|
|
font-weight: normal !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Submenus havent borders */
|
|
|
|
.submenu_not_selected, .submenu_selected, .submenu2 {
|
|
|
|
border: 0px !important;
|
2017-03-27 15:32:05 +02:00
|
|
|
min-height: 35px !important;
|
2011-06-28 15:31:52 +02:00
|
|
|
}
|
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 {
|
2015-04-10 09:29:33 +02:00
|
|
|
max-width: 93%;
|
|
|
|
min-width: 93%;
|
2011-07-06 13:57:27 +02:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2011-07-06 13:57:27 +02:00
|
|
|
ol.steps {
|
|
|
|
margin-bottom: 70px;
|
|
|
|
}
|
|
|
|
div#steps_clean {
|
|
|
|
display:none;
|
|
|
|
}
|
2013-04-10 09:57:54 +02:00
|
|
|
|
2011-07-06 13:57:27 +02:00
|
|
|
#menu_tab_frame, #menu_tab_frame_view {
|
|
|
|
width: 100%;
|
2013-04-10 09:57:54 +02:00
|
|
|
padding-right: 0px;
|
|
|
|
margin-left: 0px !important;
|
2015-04-21 17:26:20 +02:00
|
|
|
margin-bottom: 20px;
|
2015-03-26 13:12:48 +01:00
|
|
|
height: 31px;
|
2011-07-06 13:57:27 +02:00
|
|
|
}
|
|
|
|
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 {
|
2015-03-31 09:18:46 +02:00
|
|
|
margin-top: 15px;
|
2015-04-21 17:26:20 +02:00
|
|
|
margin-bottom: 5px;
|
2011-08-08 11:50:41 +02:00
|
|
|
}
|
2013-04-10 09:57:54 +02:00
|
|
|
.pagination * {
|
|
|
|
margin-left: 0px !important;
|
|
|
|
margin-right: 0px !important;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2011-09-06 15:43:44 +02:00
|
|
|
|
|
|
|
/*CALENDAR TOOLTIP STYLE*/
|
|
|
|
|
|
|
|
/* Calendar background */
|
|
|
|
table.scw {
|
2014-10-16 17:06:50 +02:00
|
|
|
background-color: #82b92e;
|
|
|
|
border: 0 !important;
|
|
|
|
border-radius: 4px;
|
2011-09-06 15:43:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Week number heading */
|
|
|
|
td.scwWeekNumberHead {
|
2013-04-15 18:04:39 +02:00
|
|
|
color: #111;
|
2011-09-06 15:43:44 +02:00
|
|
|
}
|
|
|
|
|
2011-09-06 16:58:09 +02:00
|
|
|
td.scwWeek {
|
2013-04-15 18:04:39 +02:00
|
|
|
color: #111 !important;
|
2011-09-06 16:58:09 +02:00
|
|
|
}
|
|
|
|
|
2015-04-09 15:04:23 +02:00
|
|
|
Today selector
|
2011-09-06 15:43:44 +02:00
|
|
|
td.scwFoot {
|
2011-09-06 16:58:09 +02:00
|
|
|
background-color: #daedae;
|
2013-04-15 18:04:39 +02:00
|
|
|
color: #111;
|
2011-09-06 15:43:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
td.scwFootDisabled {
|
|
|
|
background-color: #000;
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
tfoot.scwFoot {
|
2013-04-15 18:04:39 +02:00
|
|
|
color: #111;
|
2011-09-06 16:58:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.scwFoot :hover{
|
2013-06-10 10:53:42 +02:00
|
|
|
color: #3F3F3F !important;
|
2011-09-06 16:58:09 +02:00
|
|
|
}
|
|
|
|
|
2014-10-16 17:06:50 +02:00
|
|
|
table.scwCells {
|
|
|
|
background-color: #fff !important;
|
|
|
|
color: #3c3c3c !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.scwCells:hover {
|
|
|
|
background-color: #fff !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
td.scwCellsExMonth {
|
|
|
|
background-color: #eee !important;
|
|
|
|
color: #3c3c3c !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
td.scwCellsWeekend {
|
|
|
|
background-color: #3c3c3c !important;
|
|
|
|
color: #fff !important;
|
|
|
|
border: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
td.scwInputDate {
|
2014-10-21 11:10:33 +02:00
|
|
|
background-color: #777 !important;
|
|
|
|
color: #ffffff !important;
|
2014-10-16 17:06:50 +02:00
|
|
|
border: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
td.scwFoot {
|
|
|
|
background-color: #fff !important;
|
|
|
|
color: #3c3c3c !important;
|
|
|
|
border: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-12-13 10:13:28 +01:00
|
|
|
/* Cells divs to set individual styles with the table objects */
|
|
|
|
div.cellBold {
|
2015-04-09 15:04:23 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2011-12-13 10:13:28 +01:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2013-01-03 Miguel de Dios <miguel.dedios@artica.es>
* extensions/resource_registration.php,
extensions/resource_exportation.php,
operation/events/event_statistics.php,
operation/events/events_list.php,
operation/reporting/reporting_viewer.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.item_editor.php,
include/functions_alerts.php, include/functions_reports.php,
include/functions_events.php, include/graphs/fgraph.php,
include/functions_graph.php, include/styles/pandora.css,
include/functions_reporting.php, include/functions_agents.php: a lot
of changes and fixes from the branch for the reports.
MERGED FROM PANDORA_4.0
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7351 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-03 19:52:21 +01:00
|
|
|
div.cellRight {
|
2015-04-09 15:04:23 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
text-align: right;
|
2013-01-03 Miguel de Dios <miguel.dedios@artica.es>
* extensions/resource_registration.php,
extensions/resource_exportation.php,
operation/events/event_statistics.php,
operation/events/events_list.php,
operation/reporting/reporting_viewer.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.item_editor.php,
include/functions_alerts.php, include/functions_reports.php,
include/functions_events.php, include/graphs/fgraph.php,
include/functions_graph.php, include/styles/pandora.css,
include/functions_reporting.php, include/functions_agents.php: a lot
of changes and fixes from the branch for the reports.
MERGED FROM PANDORA_4.0
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7351 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-03 19:52:21 +01:00
|
|
|
}
|
|
|
|
|
2011-12-13 10:13:28 +01:00
|
|
|
div.cellCenter {
|
2015-04-09 15:04:23 +02:00
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
text-align:center;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.cellWhite {
|
2015-04-09 15:04:23 +02:00
|
|
|
width: 100%;
|
2013-01-03 Miguel de Dios <miguel.dedios@artica.es>
* extensions/resource_registration.php,
extensions/resource_exportation.php,
operation/events/event_statistics.php,
operation/events/events_list.php,
operation/reporting/reporting_viewer.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.item_editor.php,
include/functions_alerts.php, include/functions_reports.php,
include/functions_events.php, include/graphs/fgraph.php,
include/functions_graph.php, include/styles/pandora.css,
include/functions_reporting.php, include/functions_agents.php: a lot
of changes and fixes from the branch for the reports.
MERGED FROM PANDORA_4.0
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7351 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-03 19:52:21 +01:00
|
|
|
height: 100%;
|
2011-12-13 10:13:28 +01:00
|
|
|
background: #fff;
|
2013-04-15 18:04:39 +02:00
|
|
|
color: #111;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.cellNormal {
|
2015-04-09 15:04:23 +02:00
|
|
|
width: 100%;
|
2013-01-03 Miguel de Dios <miguel.dedios@artica.es>
* extensions/resource_registration.php,
extensions/resource_exportation.php,
operation/events/event_statistics.php,
operation/events/events_list.php,
operation/reporting/reporting_viewer.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.item_editor.php,
include/functions_alerts.php, include/functions_reports.php,
include/functions_events.php, include/graphs/fgraph.php,
include/functions_graph.php, include/styles/pandora.css,
include/functions_reporting.php, include/functions_agents.php: a lot
of changes and fixes from the branch for the reports.
MERGED FROM PANDORA_4.0
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7351 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-03 19:52:21 +01:00
|
|
|
height: 100%;
|
2013-10-07 10:38:41 +02:00
|
|
|
background: #6EB432;
|
2011-12-13 10:13:28 +01:00
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.cellCritical {
|
2015-04-09 15:04:23 +02:00
|
|
|
width: 100%;
|
2013-01-03 Miguel de Dios <miguel.dedios@artica.es>
* extensions/resource_registration.php,
extensions/resource_exportation.php,
operation/events/event_statistics.php,
operation/events/events_list.php,
operation/reporting/reporting_viewer.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.item_editor.php,
include/functions_alerts.php, include/functions_reports.php,
include/functions_events.php, include/graphs/fgraph.php,
include/functions_graph.php, include/styles/pandora.css,
include/functions_reporting.php, include/functions_agents.php: a lot
of changes and fixes from the branch for the reports.
MERGED FROM PANDORA_4.0
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7351 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-03 19:52:21 +01:00
|
|
|
height: 100%;
|
Changes some bad colors and others aesthetic changes. Thanks Carla.
2014-09-04 Miguel de Dios <miguel.dedios@artica.es>
* pandora_console/extensions/module_groups.php,
pandora_console/general/login_help_dialog.php,
pandora_console/images/close_button_dialog.png,
pandora_console/images/documentation.png,
pandora_console/images/enterprise_version.png,
pandora_console/images/error_login.png,
pandora_console/images/online_help.png,
pandora_console/images/support.png,
pandora_console/include/ajax/events.php,
pandora_console/include/constants.php,
pandora_console/include/functions_events.php,
pandora_console/include/javascript/pandora_events.js,
pandora_console/include/styles/jquery-ui-1.10.0.custom.css,
pandora_console/include/styles/pandora.css,
pandora_console/mobile/include/style/main.css,
pandora_console/operation/events/events_list.php: changes some
bad colors and others aesthetic changes. Thanks Carla.
2014-09-04 12:19:55 +02:00
|
|
|
background: #f85858;
|
2011-12-13 10:13:28 +01:00
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.cellWarning {
|
2013-01-03 Miguel de Dios <miguel.dedios@artica.es>
* extensions/resource_registration.php,
extensions/resource_exportation.php,
operation/events/event_statistics.php,
operation/events/events_list.php,
operation/reporting/reporting_viewer.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.item_editor.php,
include/functions_alerts.php, include/functions_reports.php,
include/functions_events.php, include/graphs/fgraph.php,
include/functions_graph.php, include/styles/pandora.css,
include/functions_reporting.php, include/functions_agents.php: a lot
of changes and fixes from the branch for the reports.
MERGED FROM PANDORA_4.0
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7351 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-03 19:52:21 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
Changes some bad colors and others aesthetic changes. Thanks Carla.
2014-09-04 Miguel de Dios <miguel.dedios@artica.es>
* pandora_console/extensions/module_groups.php,
pandora_console/general/login_help_dialog.php,
pandora_console/images/close_button_dialog.png,
pandora_console/images/documentation.png,
pandora_console/images/enterprise_version.png,
pandora_console/images/error_login.png,
pandora_console/images/online_help.png,
pandora_console/images/support.png,
pandora_console/include/ajax/events.php,
pandora_console/include/constants.php,
pandora_console/include/functions_events.php,
pandora_console/include/javascript/pandora_events.js,
pandora_console/include/styles/jquery-ui-1.10.0.custom.css,
pandora_console/include/styles/pandora.css,
pandora_console/mobile/include/style/main.css,
pandora_console/operation/events/events_list.php: changes some
bad colors and others aesthetic changes. Thanks Carla.
2014-09-04 12:19:55 +02:00
|
|
|
background: #ffea59;
|
2013-04-15 18:04:39 +02:00
|
|
|
color: #111;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.cellUnknown {
|
2015-04-09 15:04:23 +02:00
|
|
|
width: 100%;
|
2013-01-03 Miguel de Dios <miguel.dedios@artica.es>
* extensions/resource_registration.php,
extensions/resource_exportation.php,
operation/events/event_statistics.php,
operation/events/events_list.php,
operation/reporting/reporting_viewer.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.item_editor.php,
include/functions_alerts.php, include/functions_reports.php,
include/functions_events.php, include/graphs/fgraph.php,
include/functions_graph.php, include/styles/pandora.css,
include/functions_reporting.php, include/functions_agents.php: a lot
of changes and fixes from the branch for the reports.
MERGED FROM PANDORA_4.0
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7351 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-03 19:52:21 +01:00
|
|
|
height: 100%;
|
2013-10-07 10:38:41 +02:00
|
|
|
background: #AAAAAA;
|
|
|
|
color: #FFFFFF;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.cellNotInit {
|
2015-04-09 15:04:23 +02:00
|
|
|
width: 100%;
|
2013-01-03 Miguel de Dios <miguel.dedios@artica.es>
* extensions/resource_registration.php,
extensions/resource_exportation.php,
operation/events/event_statistics.php,
operation/events/events_list.php,
operation/reporting/reporting_viewer.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.item_editor.php,
include/functions_alerts.php, include/functions_reports.php,
include/functions_events.php, include/graphs/fgraph.php,
include/functions_graph.php, include/styles/pandora.css,
include/functions_reporting.php, include/functions_agents.php: a lot
of changes and fixes from the branch for the reports.
MERGED FROM PANDORA_4.0
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7351 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-03 19:52:21 +01:00
|
|
|
height: 100%;
|
2013-10-07 10:38:41 +02:00
|
|
|
background: #3BA0FF;
|
|
|
|
color: #FFFFFF;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.cellAlert {
|
2015-04-09 15:04:23 +02:00
|
|
|
width: 100%;
|
2013-01-03 Miguel de Dios <miguel.dedios@artica.es>
* extensions/resource_registration.php,
extensions/resource_exportation.php,
operation/events/event_statistics.php,
operation/events/events_list.php,
operation/reporting/reporting_viewer.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.item_editor.php,
include/functions_alerts.php, include/functions_reports.php,
include/functions_events.php, include/graphs/fgraph.php,
include/functions_graph.php, include/styles/pandora.css,
include/functions_reporting.php, include/functions_agents.php: a lot
of changes and fixes from the branch for the reports.
MERGED FROM PANDORA_4.0
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7351 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-03 19:52:21 +01:00
|
|
|
height: 100%;
|
2013-10-07 10:38:41 +02:00
|
|
|
background: #FF8800;
|
2013-04-15 18:04:39 +02:00
|
|
|
color: #111;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.cellBorder1 {
|
2015-04-09 15:04:23 +02:00
|
|
|
width: 100%;
|
2013-01-03 Miguel de Dios <miguel.dedios@artica.es>
* extensions/resource_registration.php,
extensions/resource_exportation.php,
operation/events/event_statistics.php,
operation/events/events_list.php,
operation/reporting/reporting_viewer.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.item_editor.php,
include/functions_alerts.php, include/functions_reports.php,
include/functions_events.php, include/graphs/fgraph.php,
include/functions_graph.php, include/styles/pandora.css,
include/functions_reporting.php, include/functions_agents.php: a lot
of changes and fixes from the branch for the reports.
MERGED FROM PANDORA_4.0
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7351 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-03 19:52:21 +01:00
|
|
|
height: 100%;
|
2013-10-07 10:38:41 +02:00
|
|
|
border: 1px solid #666;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.cellBig {
|
2015-04-09 15:04:23 +02:00
|
|
|
width: 100%;
|
2013-01-03 Miguel de Dios <miguel.dedios@artica.es>
* extensions/resource_registration.php,
extensions/resource_exportation.php,
operation/events/event_statistics.php,
operation/events/events_list.php,
operation/reporting/reporting_viewer.php,
godmode/reporting/reporting_builder.php,
godmode/reporting/reporting_builder.item_editor.php,
include/functions_alerts.php, include/functions_reports.php,
include/functions_events.php, include/graphs/fgraph.php,
include/functions_graph.php, include/styles/pandora.css,
include/functions_reporting.php, include/functions_agents.php: a lot
of changes and fixes from the branch for the reports.
MERGED FROM PANDORA_4.0
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7351 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-03 19:52:21 +01:00
|
|
|
height: 100%;
|
2011-12-13 10:13:28 +01:00
|
|
|
font-size: 18px;
|
|
|
|
}
|
2012-04-12 14:38:42 +02:00
|
|
|
|
|
|
|
.info_box {
|
2015-04-01 13:47:45 +02:00
|
|
|
background: #F9FAF9;
|
2013-05-23 17:42:32 +02:00
|
|
|
margin-top: 10px !important;
|
2015-04-21 17:26:20 +02:00
|
|
|
margin-bottom: 10px !important;
|
2013-04-15 18:04:39 +02:00
|
|
|
padding: 0px 5px 5px 10px;
|
2015-04-01 13:47:45 +02:00
|
|
|
border-color: #E2E2E2;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
width: 100% !important;
|
2013-04-15 18:04:39 +02:00
|
|
|
-moz-border-radius: 4px;
|
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
border-radius: 4px;
|
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...) */
|
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
.opacity_cell {
|
|
|
|
filter:alpha(opacity=80);
|
|
|
|
-moz-opacity: 0.8;
|
|
|
|
opacity: 0.8;
|
|
|
|
-khtml-opacity: 0.8;
|
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2013-06-04 10:12:44 +02:00
|
|
|
|
|
|
|
tr.group_view_data, .group_view_data {
|
2015-07-09 17:52:37 +02:00
|
|
|
color: #3F3F3F;
|
2013-06-04 10:12:44 +02:00
|
|
|
}
|
|
|
|
|
2012-04-30 21:22:07 +02:00
|
|
|
tr.group_view_crit, .group_view_crit {
|
2015-03-31 09:18:46 +02:00
|
|
|
background-color: #FC4444;
|
2013-09-24 15:20:59 +02:00
|
|
|
color: #fff;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
2014-06-02 18:57:20 +02:00
|
|
|
tr.group_view_norm, .group_view_norm, tr.group_view_normal, .group_view_normal {
|
|
|
|
#background-color: #ffffff;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
tr.group_view_ok, .group_view_ok {
|
2015-03-31 09:18:46 +02:00
|
|
|
background-color: #80BA27;
|
2013-09-24 15:20:59 +02:00
|
|
|
color: #fff;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
2014-12-01 13:55:47 +01:00
|
|
|
tr.group_view_not_init, .group_view_not_init, tr.group_view_not_init, .group_view_not_init {
|
2015-03-31 09:18:46 +02:00
|
|
|
background-color: #5BB6E5;
|
2014-12-01 13:55:47 +01:00
|
|
|
color: #fff !important;
|
|
|
|
}
|
|
|
|
|
2012-04-30 21:22:07 +02:00
|
|
|
tr.group_view_warn, .group_view_warn, tr.group_view_warn.a, a.group_view_warn, tr.a.group_view_warn {
|
2015-03-31 09:18:46 +02:00
|
|
|
background-color: #FAD403;
|
2015-12-15 13:35:57 +01:00
|
|
|
color: #fff !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a.group_view_warn {
|
2015-03-31 09:18:46 +02:00
|
|
|
color: #FAD403 !important;
|
2015-12-15 13:35:57 +01:00
|
|
|
color: #FFF !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tr.group_view_alrm, .group_view_alrm {
|
2015-03-31 09:18:46 +02:00
|
|
|
background-color: #FFA631;
|
2015-12-15 13:35:57 +01:00
|
|
|
color: #FFF !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tr.group_view_unk, .group_view_unk {
|
2015-03-31 09:18:46 +02:00
|
|
|
background-color: #B2B2B2 ;
|
2015-12-15 13:35:57 +01:00
|
|
|
color: #fff !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* classes for event priorities. Sits now in functions.php */
|
2013-05-27 17:16:54 +02:00
|
|
|
.datos_green, .datos_greenf9, .datos_green a, .datos_greenf9 a, .datos_green * {
|
2015-03-31 09:18:46 +02:00
|
|
|
background-color: #80BA27;
|
2012-04-30 21:22:07 +02:00
|
|
|
color: #fff;
|
|
|
|
}
|
2013-05-27 17:16:54 +02:00
|
|
|
.datos_red, .datos_redf9, .datos_red a, .datos_redf9 a, .datos_red *{
|
2015-03-31 09:18:46 +02:00
|
|
|
background-color: #FC4444;
|
2012-04-30 21:22:07 +02:00
|
|
|
color: #fff !important;
|
|
|
|
}
|
|
|
|
|
2013-05-27 17:16:54 +02:00
|
|
|
.datos_yellow, .datos_yellowf9, .datos_yellow * {
|
2015-03-31 09:18:46 +02:00
|
|
|
background-color: #FAD403;
|
2013-04-15 18:04:39 +02:00
|
|
|
color: #111;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
2013-05-20 10:42:02 +02:00
|
|
|
|
2013-05-27 17:16:54 +02:00
|
|
|
a.datos_blue, .datos_bluef9, .datos_blue, .datos_blue * {
|
2013-05-20 10:42:02 +02:00
|
|
|
background-color: #4CA8E0;
|
2013-06-10 18:15:36 +02:00
|
|
|
color: #fff !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
2013-05-20 10:42:02 +02:00
|
|
|
|
2013-05-27 17:16:54 +02:00
|
|
|
.datos_grey, .datos_greyf9, .datos_grey * {
|
2013-05-20 10:42:02 +02:00
|
|
|
background-color: #999999;
|
2013-06-10 18:15:36 +02:00
|
|
|
color: #fff;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
2013-05-20 10:42:02 +02:00
|
|
|
|
2013-05-27 17:16:54 +02:00
|
|
|
.datos_pink, .datos_pinkf9, .datos_pink * {
|
Changes some bad colors and others aesthetic changes. Thanks Carla.
2014-09-04 Miguel de Dios <miguel.dedios@artica.es>
* pandora_console/extensions/module_groups.php,
pandora_console/general/login_help_dialog.php,
pandora_console/images/close_button_dialog.png,
pandora_console/images/documentation.png,
pandora_console/images/enterprise_version.png,
pandora_console/images/error_login.png,
pandora_console/images/online_help.png,
pandora_console/images/support.png,
pandora_console/include/ajax/events.php,
pandora_console/include/constants.php,
pandora_console/include/functions_events.php,
pandora_console/include/javascript/pandora_events.js,
pandora_console/include/styles/jquery-ui-1.10.0.custom.css,
pandora_console/include/styles/pandora.css,
pandora_console/mobile/include/style/main.css,
pandora_console/operation/events/events_list.php: changes some
bad colors and others aesthetic changes. Thanks Carla.
2014-09-04 12:19:55 +02:00
|
|
|
background-color: #fdc4ca;
|
2013-05-27 17:16:54 +02:00
|
|
|
color: #111;
|
2012-09-13 16:06:08 +02:00
|
|
|
}
|
2013-05-20 10:42:02 +02:00
|
|
|
|
2013-05-27 17:16:54 +02:00
|
|
|
.datos_brown, .datos_brownf9, .datos_brown * {
|
2013-05-20 10:42:02 +02:00
|
|
|
background-color: #A67C52;
|
2013-05-27 17:16:54 +02:00
|
|
|
color: #fff;
|
2012-10-01 13:15:31 +02:00
|
|
|
}
|
2013-05-20 10:42:02 +02:00
|
|
|
|
2013-05-27 17:16:54 +02:00
|
|
|
.datos_orange, .datos_orangef9, .datos_orange * {
|
2013-05-20 10:42:02 +02:00
|
|
|
background-color: #F7931E;
|
2013-05-27 17:16:54 +02:00
|
|
|
color: #111;
|
2013-05-20 10:42:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
td.datos_greyf9, td.datos_bluef9, td.datos_greenf9, td.datos_redf9, td.datos_yellowf9, td.datos_pinkf9, td.datos_brownf9 ,td.datos_orangef9 {
|
2012-04-30 21:22:07 +02:00
|
|
|
padding: 5px 5px 5px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu li.selected {
|
2013-04-10 09:57:54 +02:00
|
|
|
font-weight: bold;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
ul.operation li a:hover {
|
2013-05-23 17:42:32 +02:00
|
|
|
#font-weight: bold;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2017-01-26 12:10:28 +01:00
|
|
|
.menu_icon{
|
|
|
|
transition-property: background-color;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color;
|
|
|
|
-webkit-transition-duration: 0.5s;
|
|
|
|
-webkit-transition-timing-function: ease-out;
|
|
|
|
-moz-transition-property: background-color;
|
|
|
|
-moz-transition-duration: 0.5s;
|
|
|
|
-moz-transition-timing-function: ease-out;
|
|
|
|
-o-transition-property: background-color;
|
|
|
|
-o-transition-duration: 0.5s;
|
|
|
|
-o-transition-timing-function: ease-out;
|
|
|
|
}
|
|
|
|
|
2015-04-10 13:43:02 +02:00
|
|
|
.menu_icon:hover{
|
2017-01-26 12:10:28 +01:00
|
|
|
transition-property: background-color;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color;
|
|
|
|
-webkit-transition-duration: 0.5s;
|
|
|
|
-webkit-transition-timing-function: ease-out;
|
|
|
|
-moz-transition-property: background-color;
|
|
|
|
-moz-transition-duration: 0.5s;
|
|
|
|
-moz-transition-timing-function: ease-out;
|
|
|
|
-o-transition-property: background-color;
|
|
|
|
-o-transition-duration: 0.5s;
|
|
|
|
-o-transition-timing-function: ease-out;
|
2015-04-13 13:44:29 +02:00
|
|
|
background-color: #585858 !important;
|
|
|
|
}
|
|
|
|
.submenu_not_selected:hover{
|
2017-01-26 12:10:28 +01:00
|
|
|
transition-property: background-color;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color;
|
|
|
|
-webkit-transition-duration: 0.5s;
|
|
|
|
-webkit-transition-timing-function: ease-out;
|
|
|
|
-moz-transition-property: background-color;
|
|
|
|
-moz-transition-duration: 0.5s;
|
|
|
|
-moz-transition-timing-function: ease-out;
|
|
|
|
-o-transition-property: background-color;
|
|
|
|
-o-transition-duration: 0.5s;
|
|
|
|
-o-transition-timing-function: ease-out;
|
2015-04-13 13:44:29 +02:00
|
|
|
background-color: #585858 !important;
|
|
|
|
}
|
|
|
|
.submenu_selected:hover{
|
|
|
|
background-color: #585858 !important;
|
|
|
|
}
|
2017-01-26 12:10:28 +01:00
|
|
|
.sub_subMenu{
|
|
|
|
transition-property: background-color;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color;
|
|
|
|
-webkit-transition-duration: 0.5s;
|
|
|
|
-webkit-transition-timing-function: ease-out;
|
|
|
|
-moz-transition-property: background-color;
|
|
|
|
-moz-transition-duration: 0.5s;
|
|
|
|
-moz-transition-timing-function: ease-out;
|
|
|
|
-o-transition-property: background-color;
|
|
|
|
-o-transition-duration: 0.5s;
|
|
|
|
}
|
2015-04-13 13:44:29 +02:00
|
|
|
.sub_subMenu:hover{
|
2017-01-26 12:10:28 +01:00
|
|
|
transition-property: background-color;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color;
|
|
|
|
-webkit-transition-duration: 0.5s;
|
|
|
|
-webkit-transition-timing-function: ease-out;
|
|
|
|
-moz-transition-property: background-color;
|
|
|
|
-moz-transition-duration: 0.5s;
|
|
|
|
-moz-transition-timing-function: ease-out;
|
|
|
|
-o-transition-property: background-color;
|
|
|
|
-o-transition-duration: 0.5s;
|
2015-04-13 13:44:29 +02:00
|
|
|
background-color: #585858 !important;
|
2015-04-10 13:43:02 +02:00
|
|
|
}
|
2013-04-10 09:57:54 +02:00
|
|
|
|
2015-08-19 13:16:33 +02:00
|
|
|
.submenu_text {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2015-08-19 13:54:05 +02:00
|
|
|
.menu li.selected {
|
|
|
|
box-shadow: inset 4px 0 #80BA27;
|
|
|
|
}
|
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
li.links a:hover {
|
2013-05-23 17:42:32 +02:00
|
|
|
#font-weight: bold;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.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
|
|
|
}
|
|
|
|
|
2015-04-13 13:44:29 +02:00
|
|
|
.operation {
|
|
|
|
background-color: #333 !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
2015-08-19 13:16:33 +02:00
|
|
|
.operation .selected {
|
|
|
|
background-color: #585858 !important;
|
|
|
|
}
|
|
|
|
|
2015-03-31 09:18:46 +02:00
|
|
|
.menu li, .menu .li.not_selected {
|
2012-04-30 21:22:07 +02:00
|
|
|
border-radius: 0px 0px 0px 0px;
|
2015-03-26 13:12:48 +01:00
|
|
|
display: block;
|
2015-03-31 17:26:22 +02:00
|
|
|
min-height: 35px;
|
2015-03-26 13:12:48 +01:00
|
|
|
border-bottom: 0px none #424242;
|
|
|
|
vertical-align: middle;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#menu_tab li.separator {
|
2012-07-03 Miguel de Dios <miguel.dedios@artica.es>
* ajax.php: added support for the enterprise, because some case
this file can't call enterprise functions.
* godmode/reporting/visual_console_builder.wizard.php,
godmode/reporting/visual_console_builder.php,
godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.elements.php,
godmode/reporting/visual_console_builder.editor.php,
godmode/reporting/visual_console_builder.constans.php (delete),
include/functions_visual_map_editor.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map.php: some parts of code had been
refactored because it is necesary for to add enterprise feature to
Visual map.
* include/constants.php: cleaned source code style and added and
reordened the constants for visual maps.
* include/functions_html.php, include/styles/pandora.css,
include/functions_ui.php, include/functions.php, index.php: cleaned
source code style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-03 17:39:37 +02:00
|
|
|
/* Empty */
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
2015-03-26 13:12:48 +01:00
|
|
|
.operation{
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
border-right-style: solid;
|
|
|
|
border-right-width: 0px;
|
2015-04-10 13:43:02 +02:00
|
|
|
|
2015-03-26 13:12:48 +01:00
|
|
|
}
|
|
|
|
|
2012-04-30 21:22:07 +02:00
|
|
|
input#text-id_parent.ac_input, input, textarea, select {
|
|
|
|
background-color: #ffffff !important;
|
|
|
|
border: 1px solid #cbcbcb;
|
2014-06-02 18:57:20 +02:00
|
|
|
-moz-border-radius: 3px;
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
border-radius: 3px;
|
2012-05-03 15:57:55 +02:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2012-05-28 19:19:49 +02:00
|
|
|
span#plugin_description {
|
|
|
|
font-size: 9px;
|
|
|
|
}
|
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
|
|
|
|
|
|
|
/*FOR TINYMCE*/
|
|
|
|
#tinymce {
|
|
|
|
text-align: left;
|
|
|
|
}
|
2017-01-20 16:02:34 +01:00
|
|
|
.visual_font_size_4pt, .visual_font_size_4pt > em, .visual_font_size_4pt > strong, .visual_font_size_4pt > strong > span, .visual_font_size_4pt > span, .visual_font_size_4pt > strong > em, .visual_font_size_4pt > em > strong, .visual_font_size_4pt em span, .visual_font_size_4pt span em {
|
2016-09-05 14:16:31 +02:00
|
|
|
font-size: 4pt !important;
|
2017-01-20 16:02:34 +01:00
|
|
|
line-height: 4pt;
|
2014-09-11 17:50:42 +02:00
|
|
|
}
|
2017-01-20 16:02:34 +01:00
|
|
|
.visual_font_size_6pt, .visual_font_size_6pt > em, .visual_font_size_6pt > strong, .visual_font_size_6pt > strong > span, .visual_font_size_6pt > span, .visual_font_size_6pt > strong > em, .visual_font_size_6pt > em > strong, .visual_font_size_6pt em span, .visual_font_size_6pt span em {
|
2016-09-05 14:16:31 +02:00
|
|
|
font-size: 6pt !important;
|
2017-01-20 16:02:34 +01:00
|
|
|
line-height: 6pt;
|
2014-09-11 17:50:42 +02:00
|
|
|
}
|
2017-01-20 16:02:34 +01:00
|
|
|
.visual_font_size_8pt, .visual_font_size_8pt > em, .visual_font_size_8pt > strong, .visual_font_size_8pt > strong > span , .visual_font_size_8pt > span, .visual_font_size_8pt > strong > em, .visual_font_size_8pt > em > strong, .visual_font_size_8pt em span, .visual_font_size_8pt span em {
|
2016-09-05 14:16:31 +02:00
|
|
|
font-size: 8pt !important;
|
2017-01-20 16:02:34 +01:00
|
|
|
line-height: 8pt;
|
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
|
|
|
}
|
2017-03-14 15:54:46 +01:00
|
|
|
.visual_font_size_10pt, .visual_font_size_10pt > em, .visual_font_size_10pt > strong, .visual_font_size_10pt > strong > span , .visual_font_size_10pt > span, .visual_font_size_10pt > strong > em, .visual_font_size_10pt > em > strong, .visual_font_size_10pt em span, .visual_font_size_10pt span em {
|
2017-01-20 16:02:34 +01:00
|
|
|
font-size: 10pt !important;
|
|
|
|
line-height: 10pt;
|
|
|
|
}
|
2017-03-14 15:54:46 +01:00
|
|
|
.visual_font_size_12pt, .visual_font_size_12pt > em, .visual_font_size_12pt > strong, .visual_font_size_12pt > strong > span , .visual_font_size_12pt > span, .visual_font_size_12pt > strong > em, .visual_font_size_12pt > em > strong, .visual_font_size_12pt em span, .visual_font_size_12pt span em {
|
2017-01-20 16:02:34 +01:00
|
|
|
font-size: 12pt !important;
|
|
|
|
line-height: 12pt;
|
|
|
|
}
|
|
|
|
.visual_font_size_14pt, .visual_font_size_14pt > em , .visual_font_size_14pt > strong, .visual_font_size_14pt > strong > span, .visual_font_size_14pt > span, .visual_font_size_14pt > strong > em, .visual_font_size_14pt > em > strong, .visual_font_size_14pt em span, .visual_font_size_14pt span em {
|
2016-09-05 14:16:31 +02:00
|
|
|
font-size: 14pt !important;
|
2017-01-20 16:02:34 +01:00
|
|
|
line-height: 14pt;
|
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
|
|
|
}
|
2017-10-03 11:52:26 +02:00
|
|
|
.visual_font_size_18pt, .visual_font_size_18pt > em , .visual_font_size_18pt > strong, .visual_font_size_18pt > strong > span, .visual_font_size_18pt > span, .visual_font_size_18pt > strong > em, .visual_font_size_18pt > em > strong, .visual_font_size_18pt em span, .visual_font_size_18pt span em {
|
|
|
|
font-size: 18pt !important;
|
|
|
|
line-height: 18pt;
|
|
|
|
}
|
|
|
|
|
2017-01-20 16:02:34 +01:00
|
|
|
.visual_font_size_24pt, .visual_font_size_24pt > em, .visual_font_size_24pt > strong, .visual_font_size_24pt > strong > span , .visual_font_size_24pt > span, .visual_font_size_24pt > strong > em, .visual_font_size_24pt > em > strong, .visual_font_size_24pt em span, .visual_font_size_24pt span em {
|
2016-09-05 14:16:31 +02:00
|
|
|
font-size: 24pt !important;
|
2017-01-20 16:02:34 +01:00
|
|
|
line-height: 24pt;
|
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
|
|
|
}
|
2017-10-03 11:52:26 +02:00
|
|
|
.visual_font_size_28pt, .visual_font_size_28pt > em, .visual_font_size_28pt > strong, .visual_font_size_28pt > strong > span , .visual_font_size_28pt > span, .visual_font_size_28pt > strong > em, .visual_font_size_28pt > em > strong, .visual_font_size_28pt em span, .visual_font_size_28pt span em {
|
|
|
|
font-size: 28pt !important;
|
|
|
|
line-height: 28pt;
|
|
|
|
}
|
2017-01-20 16:02:34 +01:00
|
|
|
.visual_font_size_36pt, .visual_font_size_36pt > em, .visual_font_size_36pt > strong, .visual_font_size_36pt > strong > span, .visual_font_size_36pt > span, .visual_font_size_36pt > strong > em, .visual_font_size_36pt > em > strong, .visual_font_size_36pt em span, .visual_font_size_36pt span em {
|
2016-09-05 14:16:31 +02:00
|
|
|
font-size: 36pt !important;
|
2017-01-20 16:02:34 +01:00
|
|
|
line-height: 36pt;
|
2013-01-24 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql, pandoradb.oracle.sql, pandoradb.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql,
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql: changed in the
table "tlayout_data" the field "label" to text without limits.
* godmode/extensions.php, include/functions_tags.php,
include/functions_ui.php, include/functions_agents.php,
include/functions_config.php: cleaned source code style.
* godmode/reporting/visual_console_builder.editor.js,
godmode/reporting/visual_console_builder.editor.php,
include/styles/pandora.css, include/styles/pandora_legacy.css,
include/functions_visual_map.php,
include/ajax/visual_console_builder.ajax.php,
include/functions_visual_map_editor.php: added the formatted label
into the item label with the help of tiny_mce.
* include/javascript/tiny_mce/*: update the last version of
tiny_mce.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7524 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-01-24 12:30:37 +01:00
|
|
|
}
|
2017-10-03 11:52:26 +02:00
|
|
|
.visual_font_size_48pt, .visual_font_size_48pt > em, .visual_font_size_48pt > strong, .visual_font_size_48pt > strong > span, .visual_font_size_48pt > span, .visual_font_size_48pt > strong > em, .visual_font_size_48pt > em > strong, .visual_font_size_48pt em span, .visual_font_size_48pt span em {
|
|
|
|
font-size: 48pt !important;
|
|
|
|
line-height: 48pt;
|
|
|
|
}
|
|
|
|
.visual_font_size_60pt, .visual_font_size_60pt > em, .visual_font_size_60pt > strong, .visual_font_size_60pt > strong > span, .visual_font_size_60pt > span, .visual_font_size_60pt > strong > em, .visual_font_size_60pt > em > strong, .visual_font_size_60pt em span, .visual_font_size_60pt span em {
|
|
|
|
font-size: 60pt !important;
|
|
|
|
line-height: 60pt;
|
|
|
|
}
|
2017-01-20 16:02:34 +01:00
|
|
|
.visual_font_size_72pt, .visual_font_size_72pt > em, .visual_font_size_72pt > strong, .visual_font_size_72pt > strong > span, .visual_font_size_72pt > span, .visual_font_size_72pt > strong > em, .visual_font_size_72pt > em > strong, .visual_font_size_72pt em span, .visual_font_size_72pt span em {
|
2016-09-05 14:16:31 +02:00
|
|
|
font-size: 72pt !important;
|
2017-01-20 16:02:34 +01:00
|
|
|
line-height: 72pt;
|
2013-10-11 14:48:36 +02:00
|
|
|
}
|
2016-11-16 18:58:27 +01:00
|
|
|
|
2017-10-03 11:52:26 +02:00
|
|
|
.visual_font_size_84pt, .visual_font_size_84pt > em, .visual_font_size_84pt > strong, .visual_font_size_84pt > strong > span, .visual_font_size_84pt > span, .visual_font_size_84pt > strong > em, .visual_font_size_84pt > em > strong, .visual_font_size_84pt em span, .visual_font_size_84pt span em {
|
|
|
|
font-size: 84pt !important;
|
|
|
|
line-height: 84pt;
|
|
|
|
}
|
|
|
|
|
2017-01-20 16:02:34 +01:00
|
|
|
.visual_font_size_96pt, .visual_font_size_96pt > em, .visual_font_size_96pt > strong, .visual_font_size_96pt > strong > span, .visual_font_size_96pt > span, .visual_font_size_96pt > strong > em, .visual_font_size_96pt > em > strong, .visual_font_size_96pt em span, .visual_font_size_96pt span em {
|
2016-11-16 18:58:27 +01:00
|
|
|
font-size: 96pt !important;
|
2017-01-20 16:02:34 +01:00
|
|
|
line-height: 96pt;
|
2016-11-16 18:58:27 +01:00
|
|
|
}
|
|
|
|
|
2017-10-03 11:52:26 +02:00
|
|
|
.visual_font_size_116pt, .visual_font_size_116pt > em, .visual_font_size_116pt > strong, .visual_font_size_116pt > strong > span, .visual_font_size_116pt > span, .visual_font_size_116pt > strong > em, .visual_font_size_116pt > em > strong, .visual_font_size_116pt em span, .visual_font_size_116pt span em {
|
|
|
|
font-size: 116pt !important;
|
|
|
|
line-height: 116pt;
|
|
|
|
}
|
|
|
|
|
2017-01-20 16:02:34 +01:00
|
|
|
.visual_font_size_128pt, .visual_font_size_128pt > em, .visual_font_size_128pt > strong, .visual_font_size_128pt > strong > span, .visual_font_size_128pt > span, .visual_font_size_128pt > strong > em, .visual_font_size_128pt > em > strong, .visual_font_size_128pt em span, .visual_font_size_128pt span em {
|
2016-11-16 18:58:27 +01:00
|
|
|
font-size: 128pt !important;
|
2017-01-20 16:02:34 +01:00
|
|
|
line-height: 128pt;
|
2016-11-16 18:58:27 +01:00
|
|
|
}
|
|
|
|
|
2017-10-03 11:52:26 +02:00
|
|
|
.visual_font_size_140pt, .visual_font_size_140pt > em, .visual_font_size_140pt > strong, .visual_font_size_140pt > strong > span, .visual_font_size_140pt > span, .visual_font_size_140pt > strong > em, .visual_font_size_140pt > em > strong, .visual_font_size_140pt em span, .visual_font_size_140pt span em {
|
|
|
|
font-size: 140pt !important;
|
|
|
|
line-height: 140pt;
|
|
|
|
}
|
|
|
|
|
2017-01-20 16:02:34 +01:00
|
|
|
.visual_font_size_154pt, .visual_font_size_154pt > em, .visual_font_size_154pt > strong, .visual_font_size_154pt > strong > span, .visual_font_size_154pt > span, .visual_font_size_154pt > strong > em, .visual_font_size_154pt > em > strong, .visual_font_size_154pt em span, .visual_font_size_154pt span em {
|
2016-11-16 18:58:27 +01:00
|
|
|
font-size: 154pt !important;
|
2017-01-20 16:02:34 +01:00
|
|
|
line-height: 154pt;
|
2016-11-16 18:58:27 +01:00
|
|
|
}
|
|
|
|
|
2017-01-20 16:02:34 +01:00
|
|
|
.visual_font_size_196pt, .visual_font_size_196pt > em, .visual_font_size_196pt > strong, .visual_font_size_196pt > strong > span, .visual_font_size_196pt > span, .visual_font_size_196pt > strong > em, .visual_font_size_196pt > em > strong, .visual_font_size_196pt em span, .visual_font_size_196pt span em {
|
2016-11-16 18:58:27 +01:00
|
|
|
font-size: 196pt !important;
|
2017-01-20 16:02:34 +01:00
|
|
|
line-height: 196pt;
|
2016-11-16 18:58:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-01-20 16:02:34 +01:00
|
|
|
.resize_visual_font_size_8pt, .resize_visual_font_size_8pt > em, .resize_visual_font_size_8pt > strong, .resize_visual_font_size_8pt > strong > span, .resize_visual_font_size_8pt > span, .resize_visual_font_size_8pt > strong > em, .resize_visual_font_size_8pt > em > strong, .visual_font_size_8pt em span, .visual_font_size_8pt span em {
|
2016-09-05 14:16:31 +02:00
|
|
|
font-size: 4pt !important;
|
2017-01-20 16:02:34 +01:00
|
|
|
line-height: 4pt;
|
2014-01-23 17:46:10 +01:00
|
|
|
}
|
2017-01-20 16:02:34 +01:00
|
|
|
.resize_visual_font_size_14pt, .resize_visual_font_size_14pt > em , .resize_visual_font_size_14pt > strong, .resize_visual_font_size_14pt > strong > span, .resize_visual_font_size_14pt > span, .resize_visual_font_size_14pt > strong > em, .resize_visual_font_size_14pt > em > strong, .visual_font_size_14pt em span, .visual_font_size_14pt span em {
|
2016-09-05 14:16:31 +02:00
|
|
|
font-size: 7pt !important;
|
2017-01-20 16:02:34 +01:00
|
|
|
line-height: 7pt;
|
2014-01-23 17:46:10 +01:00
|
|
|
}
|
2017-01-20 16:02:34 +01:00
|
|
|
.resize_visual_font_size_24pt, .resize_visual_font_size_24pt > em, .resize_visual_font_size_24pt > strong, .resize_visual_font_size_24pt > strong > span, .resize_visual_font_size_24pt > span, .resize_visual_font_size_24pt > strong > em, .resize_visual_font_size_24pt > em > strong, .visual_font_size_14pt em span, .visual_font_size_14pt span em {
|
2016-09-05 14:16:31 +02:00
|
|
|
font-size: 12pt !important;
|
2017-01-20 16:02:34 +01:00
|
|
|
line-height: 12pt;
|
|
|
|
|
2014-01-23 17:46:10 +01:00
|
|
|
}
|
2017-01-20 16:02:34 +01:00
|
|
|
.resize_visual_font_size_36pt, .resize_visual_font_size_36pt > em, .resize_visual_font_size_36pt > strong, .resize_visual_font_size_36pt > strong > span, .resize_visual_font_size_36pt > span, .resize_visual_font_size_36pt > strong > em, .resize_visual_font_size_36pt > em > strong, .visual_font_size_36pt em span, .visual_font_size_36pt span em {
|
2016-09-05 14:16:31 +02:00
|
|
|
font-size: 18pt !important;
|
2017-01-20 16:02:34 +01:00
|
|
|
line-height: 18pt;
|
2014-01-23 17:46:10 +01:00
|
|
|
}
|
2017-01-20 16:02:34 +01:00
|
|
|
.resize_visual_font_size_72pt, .resize_visual_font_size_72pt > em, .resize_visual_font_size_72pt > strong, .resize_visual_font_size_72pt > strong > span, .resize_visual_font_size_72pt > span, .resize_visual_font_size_72pt > strong > em, .resize_visual_font_size_72pt > em > strong, .visual_font_size_72pt em span, .visual_font_size_72pt span em {
|
2016-09-05 14:16:31 +02:00
|
|
|
font-size: 36pt !important;
|
2017-01-20 16:02:34 +01:00
|
|
|
line-height: 36pt;
|
2014-01-23 17:46:10 +01:00
|
|
|
}
|
2013-02-20 14:48:46 +01:00
|
|
|
|
|
|
|
/*SIDEBAR*/
|
|
|
|
.menu_sidebar {
|
2013-04-15 18:04:39 +02:00
|
|
|
color:#111;
|
2013-05-23 17:42:32 +02:00
|
|
|
background: #3f3f3f;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2013-02-20 14:48:46 +01:00
|
|
|
margin-left: 10px;
|
|
|
|
padding-left: 0px;
|
|
|
|
padding-right: 0px;
|
|
|
|
padding-top: 10px;
|
|
|
|
text-align: left;
|
2015-04-09 15:04:23 +02:00
|
|
|
font-family:arial,sans-serif,verdana;
|
2013-02-20 14:48:46 +01:00
|
|
|
font-size:10px;
|
|
|
|
border:1px solid #000;
|
|
|
|
position:absolute;
|
|
|
|
margin:0;
|
|
|
|
width:400px;
|
|
|
|
height:260px;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2013-02-20 14:48:46 +01:00
|
|
|
-moz-box-shadow: 0px 4px 4px #010E1B !important;
|
|
|
|
-webkit-box-shadow: 0px 4px 4px #010E1B !important;
|
2015-04-09 15:04:23 +02:00
|
|
|
box-shadow: 0px 4px 4px #010E1B !important;
|
|
|
|
|
2013-02-20 14:48:46 +01:00
|
|
|
filter:alpha(opacity=97);
|
|
|
|
-moz-opacity: 0.97;
|
|
|
|
opacity: 0.97;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu_sidebar_radius_left {
|
2013-05-23 17:42:32 +02:00
|
|
|
-moz-border-top-left-radius: 8px;
|
|
|
|
-webkit-border-top-left-radius: 8px;
|
|
|
|
border-top-left-radius: 8px;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2013-05-23 17:42:32 +02:00
|
|
|
-moz-border-bottom-left-radius: 8px;
|
|
|
|
-webkit-border-bottom-left-radius: 8px;
|
|
|
|
border-bottom-left-radius: 8px;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2013-02-20 14:48:46 +01:00
|
|
|
border-right:0px solid #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu_sidebar_radius_right {
|
2013-05-23 17:42:32 +02:00
|
|
|
-moz-border-top-right-radius: 8px;
|
|
|
|
-webkit-border-top-right-radius: 8px;
|
|
|
|
border-top-right-radius: 8px;
|
|
|
|
-moz-border-bottom-right-radius: 8px;
|
|
|
|
-webkit-border-bottom-right-radius: 8px;
|
2015-04-09 15:04:23 +02:00
|
|
|
border-bottom-right-radius: 8px;
|
2013-05-23 17:42:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu_sidebar_outer {
|
|
|
|
margin-left: 3px;
|
2015-04-09 15:04:23 +02:00
|
|
|
background: #ECECEC;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
2013-05-23 17:42:32 +02:00
|
|
|
-moz-border-radius: 6px;
|
|
|
|
-webkit-border-radius: 6px;
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 8px;
|
2013-02-20 14:48:46 +01:00
|
|
|
}
|
2013-02-26 17:10:02 +01:00
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
/*Groupsview*/
|
|
|
|
|
|
|
|
.groupsview {
|
|
|
|
border-spacing: 0px 4px;
|
|
|
|
}
|
|
|
|
|
2013-04-30 09:23:40 +02:00
|
|
|
.groupsview tr {
|
|
|
|
background-color: #666;
|
|
|
|
}
|
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
.groupsview th {
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.groupsview td.first, .groupsview th.first {
|
|
|
|
-moz-border-top-left-radius: 10px;
|
|
|
|
-webkit-border-top-left-radius: 10px;
|
|
|
|
border-top-left-radius: 10px;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
-moz-border-bottom-left-radius: 10px;
|
|
|
|
-webkit-border-bottom-left-radius: 10px;
|
|
|
|
border-bottom-left-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.groupsview td.last, .groupsview th.last {
|
|
|
|
-moz-border-top-right-radius: 10px;
|
|
|
|
-webkit-border-top-right-radius: 10px;
|
|
|
|
border-top-right-radius: 10px;
|
|
|
|
-moz-border-bottom-right-radius: 10px;
|
|
|
|
-webkit-border-bottom-right-radius: 10px;
|
|
|
|
border-bottom-right-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.tip {
|
|
|
|
display: inline !important;
|
|
|
|
cursor: help;
|
|
|
|
}
|
|
|
|
|
2013-04-17 10:21:22 +02:00
|
|
|
a.tip>img {
|
|
|
|
margin-left: 2px;
|
2013-04-22 12:31:20 +02:00
|
|
|
margin-right: 2px;
|
2013-04-17 10:21:22 +02:00
|
|
|
}
|
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
input.search_input {
|
2015-04-09 15:04:23 +02:00
|
|
|
background: white url('../../images/input_zoom.png') no-repeat right;
|
|
|
|
padding: 0px;
|
|
|
|
padding-left:5px;
|
|
|
|
margin: 0;
|
|
|
|
width: 80%;
|
|
|
|
height: 19px;
|
|
|
|
margin-bottom: 5px;
|
2013-04-10 09:57:54 +02:00
|
|
|
margin-left: 2px;
|
2013-05-23 17:42:32 +02:00
|
|
|
padding-right: 25px;
|
|
|
|
color: #999;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2013-05-27 17:16:54 +02:00
|
|
|
.vertical_fields td input, .vertical_fields td select {
|
2013-05-23 17:42:32 +02:00
|
|
|
margin-top: 8px !important;
|
2013-04-15 13:44:36 +02:00
|
|
|
}
|
|
|
|
|
2015-04-28 15:29:15 +02:00
|
|
|
a[id^='tgl_ctrl_']>img, a[id^='tgl_ctrl_']>b>img{
|
2015-04-21 17:26:20 +02:00
|
|
|
vertical-align:middle;
|
2013-04-15 18:04:39 +02:00
|
|
|
}
|
|
|
|
|
2013-04-15 13:44:36 +02:00
|
|
|
.noshadow {
|
|
|
|
-moz-box-shadow: 0px !important;
|
|
|
|
-webkit-box-shadow: 0px !important;
|
|
|
|
box-shadow: 0px !important;
|
|
|
|
}
|
|
|
|
|
2013-02-26 17:10:02 +01:00
|
|
|
/* Images forced title */
|
|
|
|
|
|
|
|
DIV.forced_title_layer {
|
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
|
|
position: absolute;
|
2013-04-16 12:10:44 +02:00
|
|
|
z-index: 100000;
|
2013-02-26 17:10:02 +01:00
|
|
|
border: 1px solid #708090;
|
2014-06-02 18:57:20 +02:00
|
|
|
background-color: #666;
|
|
|
|
color: #FFF;
|
2014-09-11 09:59:50 +02:00
|
|
|
padding: 4px 5px;
|
2013-02-26 17:10:02 +01:00
|
|
|
font-weight: bold;
|
|
|
|
font-size: small;
|
2014-09-11 09:59:50 +02:00
|
|
|
font-size: 11px;
|
2014-06-02 18:57:20 +02:00
|
|
|
/* IE 8 */
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=9)";
|
|
|
|
/* Netscape */
|
|
|
|
-moz-opacity: 0.9;
|
|
|
|
opacity: 0.9;
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
border-radius: 3px;
|
2013-02-26 17:10:02 +01:00
|
|
|
}
|
2013-04-15 13:44:36 +02:00
|
|
|
|
|
|
|
/* Graphs styles */
|
|
|
|
|
2014-10-13 18:51:21 +02:00
|
|
|
div.legend>div {
|
|
|
|
pointer-events: none; /* Allow to click the graphs below */
|
2013-04-15 13:44:36 +02:00
|
|
|
opacity: 0.65 !important;
|
|
|
|
}
|
2013-04-15 18:04:39 +02:00
|
|
|
|
2016-06-07 13:10:08 +02:00
|
|
|
/* Recover the padding of the legend elements under a databox parent */
|
2016-10-19 12:45:40 +02:00
|
|
|
table.databox div.legend>td {
|
2016-06-07 13:10:08 +02:00
|
|
|
padding: 1px;
|
|
|
|
}
|
|
|
|
|
2014-10-13 18:51:21 +02:00
|
|
|
div.nodata_text {
|
2015-04-09 15:04:23 +02:00
|
|
|
padding: 5px 12px 0px 68px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #C1C1C1;
|
|
|
|
text-transform: uppercase;
|
|
|
|
display: table-cell;
|
2013-04-15 18:04:39 +02:00
|
|
|
vertical-align: middle;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2014-10-13 18:51:21 +02:00
|
|
|
div.nodata_container {
|
2015-04-09 15:04:23 +02:00
|
|
|
width:150px;
|
|
|
|
height:100px;
|
|
|
|
background-repeat:no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
margin: auto auto;
|
2013-04-15 18:04:39 +02:00
|
|
|
display: table;
|
|
|
|
}
|
2013-05-23 17:42:32 +02:00
|
|
|
|
|
|
|
#snmp_data {
|
2015-04-09 15:04:23 +02:00
|
|
|
width: 40%;
|
|
|
|
position: absolute;
|
|
|
|
top:0;
|
2013-05-23 17:42:32 +02:00
|
|
|
right:20px;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2013-05-23 17:42:32 +02:00
|
|
|
#background-color: #fff;
|
|
|
|
#padding: 10px;
|
|
|
|
}
|
|
|
|
|
2014-12-12 12:55:46 +01:00
|
|
|
#rmf_data {
|
2015-04-09 15:04:23 +02:00
|
|
|
width: 40%;
|
|
|
|
height: 80%;
|
|
|
|
position: absolute;
|
|
|
|
top:0;
|
2014-12-12 12:55:46 +01:00
|
|
|
right:20px;
|
|
|
|
overflow: auto;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2014-12-12 12:55:46 +01:00
|
|
|
#background-color: #fff;
|
|
|
|
#padding: 10px;
|
|
|
|
}
|
|
|
|
|
2013-07-09 09:39:14 +02:00
|
|
|
/* Subtab styles */
|
|
|
|
|
|
|
|
ul.subsubmenu {
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
-moz-border-bottom-right-radius: 5px;
|
|
|
|
-moz-border-bottom-left-radius: 5px;
|
|
|
|
-webkit-border-bottom-right-radius: 5px;
|
|
|
|
-webkit-border-bottom-left-radius: 5px;
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2015-03-31 17:26:22 +02:00
|
|
|
background: #ECECEC !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.subsubmenu li{
|
|
|
|
background-color: #ECECEC;
|
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 14px;
|
|
|
|
border-color: #E2E2E2;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.subsubmenu li a{
|
|
|
|
padding: 0px 10px 5px;
|
2013-07-09 09:39:14 +02:00
|
|
|
}
|
2013-05-23 17:42:32 +02:00
|
|
|
|
2013-07-09 09:39:14 +02:00
|
|
|
div#agent_wizard_subtabs {
|
|
|
|
position: absolute;
|
|
|
|
margin-left: 0px;
|
|
|
|
display: none;
|
|
|
|
padding-bottom: 3px;
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.agent_wizard_tab:hover {
|
|
|
|
cursor: default;
|
|
|
|
}
|
2013-09-24 15:20:59 +02:00
|
|
|
|
|
|
|
#container_servicemap_legend {
|
|
|
|
position: absolute;
|
|
|
|
width: 200px;
|
2015-07-17 09:49:44 +02:00
|
|
|
background: #FFF;
|
2013-09-24 15:20:59 +02:00
|
|
|
margin-top: 10px;
|
|
|
|
right: 2px;
|
2015-07-17 09:49:44 +02:00
|
|
|
border: 1px solid #E2E2E2;
|
2013-09-24 15:20:59 +02:00
|
|
|
border-radius: 5px;
|
|
|
|
padding: 10px;
|
|
|
|
opacity: .90;
|
|
|
|
}
|
|
|
|
|
|
|
|
#container_servicemap_legend table {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2016-05-04 13:00:27 +02:00
|
|
|
.legend_servicemap_item {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2013-09-24 15:20:59 +02:00
|
|
|
.legend_square {
|
|
|
|
width: 20px;
|
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.legend_square_simple {
|
|
|
|
padding-left:0px;
|
|
|
|
padding-right: 10px;
|
|
|
|
padding-bottom: 3px;
|
|
|
|
}
|
|
|
|
.legend_square div, .legend_square_simple div {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.legend_basic {
|
|
|
|
background: #F4F4F4;
|
|
|
|
margin-top: 10px;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.agents_modules_table th {
|
|
|
|
background: #3F3F3F;
|
|
|
|
}
|
|
|
|
|
|
|
|
.agents_modules_table th * {
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
2013-10-08 16:16:06 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* LOAD_ENTERPRISE.PHP
|
|
|
|
*/
|
|
|
|
#code_license_dialog {
|
|
|
|
padding: 50px;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
#code_license_dialog #logo {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#code_license_dialog, #code_license_dialog * {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
#code_license_dialog ul {
|
|
|
|
padding-left: 30px;
|
|
|
|
list-style-image: url("../../images/input_tick.png");
|
|
|
|
}
|
|
|
|
#code_license_dialog li {
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#code_license_dialog #code {
|
|
|
|
font-weight: bolder;
|
|
|
|
font-size: 20px;
|
|
|
|
border: 1px solid #dddddd;
|
|
|
|
padding: 5px;
|
|
|
|
text-align: center;
|
|
|
|
-moz-border-radius: 8px;
|
|
|
|
-webkit-border-radius: 8px;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#code_license_dialog a {
|
|
|
|
text-decoration: underline;
|
2013-10-16 11:19:51 +02:00
|
|
|
}
|
2013-12-12 15:49:36 +01:00
|
|
|
|
|
|
|
/* GRAPHS CSS */
|
|
|
|
|
|
|
|
.parent_graph {
|
|
|
|
position: relative;
|
2015-09-15 17:56:26 +02:00
|
|
|
margin: 0 auto;
|
2013-12-12 15:49:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu_graph, .timestamp_graph {
|
|
|
|
position: absolute !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu_graph {
|
|
|
|
-moz-border-top-right-radius: 6px;
|
|
|
|
-webkit-border-top-right-radius: 6px;
|
|
|
|
border-top-right-radius: 6px;
|
|
|
|
-moz-border-top-left-radius: 6px;
|
|
|
|
-webkit-border-top-left-radius: 6px;
|
|
|
|
border-top-left-radius: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.legend_graph {
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.legendColorBox * {
|
|
|
|
font-size: 0px;
|
|
|
|
padding: 0px 4px;
|
|
|
|
overflow: visible !important;
|
|
|
|
}
|
|
|
|
|
2013-12-16 10:29:43 +01:00
|
|
|
/* GIS CSS */
|
2013-12-12 15:49:36 +01:00
|
|
|
|
2013-12-16 10:29:43 +01:00
|
|
|
.olLayerDiv {
|
|
|
|
z-index: 102 !important;
|
|
|
|
}
|
2014-01-21 17:42:44 +01:00
|
|
|
|
|
|
|
/* Alert view */
|
|
|
|
|
2014-01-24 11:17:23 +01:00
|
|
|
table.alert_days th, table.alert_time th{
|
2014-01-21 17:42:44 +01:00
|
|
|
height: 30px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2014-01-23 20:49:16 +01:00
|
|
|
table.alert_escalation th img {
|
|
|
|
width: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-21 17:42:44 +01:00
|
|
|
td.used_field {
|
|
|
|
#border: solid #6EB432;
|
|
|
|
background: #6EB432 !important;
|
|
|
|
color: #FFFFFF;
|
2014-03-05 12:34:05 +01:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
td.overrided_field {
|
|
|
|
color: #666;
|
2014-01-21 17:42:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
td.unused_field {
|
|
|
|
color: #888;
|
|
|
|
}
|
|
|
|
|
|
|
|
td.empty_field {
|
|
|
|
background: url('../../images/long_arrow.png') no-repeat 100% center;
|
|
|
|
}
|
2014-03-05 12:34:05 +01:00
|
|
|
|
|
|
|
#table_macros textarea {
|
|
|
|
width: 96%;
|
|
|
|
}
|
2014-05-09 16:57:40 +02:00
|
|
|
|
2014-06-17 10:12:24 +02:00
|
|
|
/* Policies styles */
|
|
|
|
|
|
|
|
table#policy_modules td * {
|
|
|
|
display: inline;
|
|
|
|
}
|
2014-08-12 18:31:27 +02:00
|
|
|
|
|
|
|
.context_help_title {
|
|
|
|
font-weight: bolder;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.context_help_body {
|
|
|
|
text-align: left;
|
2014-08-26 14:22:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#left_column_logon_ok {
|
|
|
|
width: 750px;
|
|
|
|
float:left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#news_board {
|
2014-10-24 13:00:57 +02:00
|
|
|
min-width: 530px;
|
2014-08-26 14:22:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#right_column_logon_ok {
|
|
|
|
width: 350px;
|
|
|
|
float: right;
|
|
|
|
margin-right: 20px;
|
2014-08-26 15:30:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#clippy_head_title {
|
|
|
|
font-weight: bold;
|
|
|
|
background: #82b92e;
|
|
|
|
color: #ffffff;
|
|
|
|
margin-top: -15px;
|
|
|
|
margin-left: -15px;
|
|
|
|
margin-right: -15px;
|
|
|
|
padding: 5px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
border-top-left-radius: 2px;
|
|
|
|
border-top-right-radius: 2px;
|
2014-12-12 12:55:46 +01:00
|
|
|
}
|
2014-12-11 16:16:36 +01:00
|
|
|
|
|
|
|
#dialog-double_auth-container {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.center_align {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.left_align {
|
|
|
|
text-align: left;
|
2014-12-16 18:31:18 +01:00
|
|
|
}
|
|
|
|
|
2015-09-07 12:06:30 +02:00
|
|
|
.right_align {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2016-05-30 08:13:46 +02:00
|
|
|
.saml_button {
|
|
|
|
float: left;
|
|
|
|
position: fixed;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2015-03-31 09:18:46 +02:00
|
|
|
.status_tactical{
|
2015-04-15 11:28:07 +02:00
|
|
|
width: 100%;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2015-03-31 09:18:46 +02:00
|
|
|
background-color: #FFF !important;
|
|
|
|
padding: 10px;
|
|
|
|
border: 1px solid #E2E2E2;
|
|
|
|
margin-top: 5%;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status_tactical img {
|
|
|
|
border: 3px solid #000;
|
|
|
|
border-radius: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sumary{
|
|
|
|
color: #FFF;
|
|
|
|
margin: 15px;
|
|
|
|
padding: 10px 30px;
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: bold;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
|
2017-03-07 15:31:24 +01:00
|
|
|
div.sumary_div{
|
|
|
|
color: #FFF;
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: bold;
|
|
|
|
border-radius: 2px;
|
2017-03-08 10:56:25 +01:00
|
|
|
width: 120px;
|
|
|
|
height: 40px;
|
2017-03-07 15:31:24 +01:00
|
|
|
text-align: center;
|
2017-03-08 10:56:25 +01:00
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.div_groups_status{
|
|
|
|
width: 350px;
|
|
|
|
background-color: white;
|
|
|
|
border: 1px solid #ECECEC;
|
|
|
|
border-radius: 5px;
|
|
|
|
margin: 20px;
|
|
|
|
float:left;
|
2017-03-07 15:31:24 +01:00
|
|
|
}
|
|
|
|
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox.data>tbody>tr>td{
|
2015-04-21 17:26:20 +02:00
|
|
|
border-bottom: 1px solid #E2E2E2;
|
2015-04-15 09:45:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.databox .search{
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox.data>tbody>tr>td.progress_bar img{
|
2015-04-15 09:45:13 +02:00
|
|
|
border: 3px solid #000;
|
|
|
|
border-radius: 100px;
|
|
|
|
}
|
|
|
|
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox>tbody>tr>td{
|
2015-06-26 12:21:25 +02:00
|
|
|
padding-left: 9px;
|
|
|
|
padding-right: 9px;
|
2015-04-15 09:45:13 +02:00
|
|
|
padding-top: 7px;
|
|
|
|
padding-bottom: 7px;
|
2015-03-31 09:52:27 +02:00
|
|
|
}
|
2015-04-15 11:28:07 +02:00
|
|
|
.databox.pies fieldset.tactical_set{
|
|
|
|
width:70% !important;
|
|
|
|
height: 285px;
|
|
|
|
}
|
2015-03-31 09:52:27 +02:00
|
|
|
|
|
|
|
.difference{
|
|
|
|
border-left-width: 2px;
|
|
|
|
border-left-style: solid;
|
|
|
|
border-right-width: 2px;
|
|
|
|
border-right-style: solid;
|
|
|
|
border-color: #E2E2E2;
|
|
|
|
}
|
2014-12-30 12:39:28 +01:00
|
|
|
|
2015-04-09 15:04:23 +02:00
|
|
|
#title_menu {
|
|
|
|
color: #FFF;
|
|
|
|
float: right;
|
|
|
|
width: 70%;
|
|
|
|
letter-spacing: 0pt;
|
2015-04-13 13:44:29 +02:00
|
|
|
font-size: 8pt;
|
2015-04-09 15:04:23 +02:00
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no_hidden_menu{
|
2015-04-13 13:44:29 +02:00
|
|
|
background-position: 11% 50% !important;
|
2015-04-09 15:04:23 +02:00
|
|
|
}
|
|
|
|
|
2015-03-31 17:26:22 +02:00
|
|
|
#menu_tab li.nomn, #menu_tab li.nomn_high {
|
2015-04-07 09:50:46 +02:00
|
|
|
background-color: #ECECEC;
|
|
|
|
padding-right: 3px;
|
|
|
|
padding-left: 3px;
|
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 14px;
|
|
|
|
border-color: #E2E2E2;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
2015-03-31 17:26:22 +02:00
|
|
|
margin-top: -10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#menu_tab li.nomn_high, #menu_tab li.nomn_high span {
|
|
|
|
color: #FFF;
|
|
|
|
background-color: #FFF;
|
|
|
|
}
|
|
|
|
|
2015-04-07 09:50:46 +02:00
|
|
|
#menu_tab li.nomn img, #menu_tab li img {
|
|
|
|
margin-top: 3px;
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
|
|
|
|
2015-03-31 17:26:22 +02:00
|
|
|
#menu_tab li.tab_operation a, #menu_tab a.tab_operation{
|
|
|
|
background: none !important ;
|
|
|
|
}
|
|
|
|
|
2015-04-15 10:26:48 +02:00
|
|
|
.subsubmenu{
|
|
|
|
position: absolute;
|
|
|
|
float: right;
|
|
|
|
z-index: 9999;
|
|
|
|
display: none;
|
2016-05-09 13:04:59 +02:00
|
|
|
margin-top: 5px !important ;
|
2015-04-15 10:26:48 +02:00
|
|
|
left: 0px !important;
|
|
|
|
}
|
|
|
|
.subsubmenu li{
|
|
|
|
margin-top: 0px !important ;
|
|
|
|
}
|
2015-03-31 17:26:22 +02:00
|
|
|
|
2015-07-07 16:05:23 +02:00
|
|
|
.agents_modules_table{
|
|
|
|
border: 1px solid #E2E2E2;
|
|
|
|
border-spacing: 0px;
|
|
|
|
}
|
|
|
|
.agents_modules_table td{
|
|
|
|
border: 1px solid #E2E2E2;
|
|
|
|
}
|
|
|
|
.agents_modules_table th{
|
|
|
|
border: 1px solid #E2E2E2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.databox.filters, .databox.data, .databox.profile_list{
|
2015-04-22 16:46:08 +02:00
|
|
|
margin-bottom: 20px;
|
2015-04-21 17:26:20 +02:00
|
|
|
}
|
|
|
|
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox.filters>tbody>tr>td{
|
2015-03-31 17:26:22 +02:00
|
|
|
padding: 10px;
|
2015-04-21 17:26:20 +02:00
|
|
|
padding-left:20px;
|
2015-03-31 17:26:22 +02:00
|
|
|
}
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox.profile_list>tbody>tr>td{
|
2015-07-07 16:05:23 +02:00
|
|
|
padding: 4px 1px;
|
|
|
|
padding-left: 5px;
|
|
|
|
border-bottom: 1px solid #E2E2E2;
|
|
|
|
}
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox.profile_list>tbody>tr>a.tip > img{
|
2015-07-07 16:05:23 +02:00
|
|
|
margin: 0px;
|
|
|
|
}
|
2015-04-21 17:26:20 +02:00
|
|
|
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox.filters>tbody>tr>td>img, .databox.filters>tbody>tr>td>div>a>img,
|
|
|
|
.databox.filters>tbody>tr>td>span>img, .databox.filters>tbody>tr>td>span>a>img,
|
|
|
|
.databox.filters>tbody>tr>td>a>img{
|
2015-04-21 17:26:20 +02:00
|
|
|
vertical-align: middle;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox.data>tbody>tr>td>img,.databox.data>thead>tr>th>img, .databox.data>tbody>tr>td>div>a>img,
|
|
|
|
.databox.data>tbody>tr>td>span>img, .databox.data>tbody>tr>td>span>a>img,
|
|
|
|
.databox.data>tbody>tr>td>a>img, .databox.data>tbody>tr>td>form>a>img {
|
2015-06-12 15:50:46 +02:00
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox.filters>tbody>tr>td>a>img {
|
2015-04-22 09:51:34 +02:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2015-04-21 17:26:20 +02:00
|
|
|
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox.data>tbody>tr>td>input[type="checkbox"] {
|
2015-07-03 11:13:10 +02:00
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox_color>tbody>tr>td{
|
2015-04-15 09:45:13 +02:00
|
|
|
padding-left: 10px;
|
|
|
|
}
|
2015-03-31 17:26:22 +02:00
|
|
|
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox.agente>tbody>tr>td>div>canvas{
|
2015-07-09 17:52:37 +02:00
|
|
|
width: 100% !important;
|
|
|
|
text-align: left !important;
|
|
|
|
}
|
2016-10-19 12:45:40 +02:00
|
|
|
.databox.agente>tbody>tr>td>div.graph{
|
2015-07-09 17:52:37 +02:00
|
|
|
width: 100% !important;
|
|
|
|
text-align: left !important;
|
|
|
|
}
|
|
|
|
|
2015-04-13 13:44:29 +02:00
|
|
|
.godmode, .menu_icon ul li{
|
|
|
|
background-color: #222;
|
|
|
|
}
|
|
|
|
.operation .menu_icon ul li{
|
|
|
|
background-color: #333;
|
|
|
|
}
|
|
|
|
|
2015-04-13 09:07:52 +02:00
|
|
|
.godmode{
|
2016-09-01 12:02:33 +02:00
|
|
|
border-top: 4px solid #777 !important;
|
2015-04-15 17:35:36 +02:00
|
|
|
padding-bottom: 4px !important;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
border-right-style: solid;
|
|
|
|
border-right-width: 0px;
|
2015-04-13 09:07:52 +02:00
|
|
|
}
|
2015-06-12 15:50:46 +02:00
|
|
|
|
|
|
|
.green_title{
|
|
|
|
background-color: #82B92E;
|
|
|
|
font-weight:normal;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard{
|
|
|
|
top: 23px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard li a{
|
2015-06-16 16:09:50 +02:00
|
|
|
width: 158px !important;
|
2015-06-12 15:50:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.text_subDashboard{
|
|
|
|
float: left;
|
|
|
|
margin-top: 5%;
|
|
|
|
margin-left: 3%;
|
|
|
|
}
|
|
|
|
|
2016-07-20 16:07:56 +02:00
|
|
|
.title_um {
|
|
|
|
font-family: "open sans";
|
|
|
|
font-size: 20px;
|
|
|
|
color: #82B92E;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text_um {
|
|
|
|
font-family: "open sans";
|
|
|
|
font-size: 16px;
|
|
|
|
padding-left: 80px;
|
|
|
|
}
|
|
|
|
|
2014-12-30 12:39:28 +01:00
|
|
|
/* The items with the class 'spinner' will rotate */
|
|
|
|
/* Not supported on IE9 and below */
|
|
|
|
.spinner {
|
|
|
|
-webkit-animation: spinner 2s infinite linear;
|
|
|
|
animation: spinner 2s infinite linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes spinner {
|
|
|
|
0% {
|
2015-08-05 13:58:15 +02:00
|
|
|
-ms-transform: rotate(0deg); /* IE */
|
|
|
|
-moz-transform: rotate(0deg); /* FF */
|
|
|
|
-o-transform: rotate(0deg); /* Opera */
|
|
|
|
-webkit-transform: rotate(0deg); /* Safari and Chrome */
|
2014-12-30 12:39:28 +01:00
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
2015-08-05 13:58:15 +02:00
|
|
|
-ms-transform: rotate(359deg); /* IE */
|
|
|
|
-moz-transform: rotate(359deg); /* FF */
|
|
|
|
-o-transform: rotate(359deg); /* Opera */
|
|
|
|
-webkit-transform: rotate(359deg); /* Safari and Chrome */
|
2014-12-30 12:39:28 +01:00
|
|
|
transform: rotate(359deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spinner {
|
|
|
|
0% {
|
2015-08-05 13:58:15 +02:00
|
|
|
-ms-transform: rotate(0deg); /* IE */
|
|
|
|
-moz-transform: rotate(0deg); /* FF */
|
|
|
|
-o-transform: rotate(0deg); /* Opera */
|
|
|
|
-webkit-transform: rotate(0deg); /* Safari and Chrome */
|
2014-12-30 12:39:28 +01:00
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
2015-08-05 13:58:15 +02:00
|
|
|
-ms-transform: rotate(359deg); /* IE */
|
|
|
|
-moz-transform: rotate(359deg); /* FF */
|
|
|
|
-o-transform: rotate(359deg); /* Opera */
|
|
|
|
-webkit-transform: rotate(359deg); /* Safari and Chrome */
|
2014-12-30 12:39:28 +01:00
|
|
|
transform: rotate(359deg);
|
|
|
|
}
|
2015-02-03 13:37:56 +01:00
|
|
|
}
|
2016-03-09 11:45:48 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - Styles for the new networkmap -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
.zoom_controller {
|
|
|
|
width: 30px;
|
|
|
|
height: 210px;
|
|
|
|
background: blue;
|
|
|
|
border-radius: 15px;
|
2016-09-22 11:12:19 +02:00
|
|
|
|
2016-03-09 11:45:48 +01:00
|
|
|
top: 50px;
|
|
|
|
left: 10px;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.vertical_range {
|
|
|
|
padding: 0;
|
|
|
|
-webkit-transform: rotate(270deg);
|
|
|
|
-moz-transform: rotate(270deg);
|
|
|
|
transform: rotate(270deg);
|
|
|
|
width: 200px;
|
|
|
|
height: 20px;
|
|
|
|
position: relative;
|
|
|
|
background: transparent !important;
|
|
|
|
border: 0px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vertical_range {
|
|
|
|
left: -92px;
|
|
|
|
top: 93px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (-webkit-min-device-pixel-ratio:0)
|
|
|
|
{
|
|
|
|
/* Only for chrome */
|
2016-09-22 11:12:19 +02:00
|
|
|
|
2016-03-09 11:45:48 +01:00
|
|
|
.vertical_range {
|
|
|
|
left: -87px;
|
|
|
|
top: 93px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.home_zoom {
|
|
|
|
top: 310px;
|
|
|
|
left: 10px;
|
2016-09-22 11:12:19 +02:00
|
|
|
|
2016-03-09 11:45:48 +01:00
|
|
|
display: table-cell;
|
|
|
|
position: absolute;
|
|
|
|
font-weight: bolder;
|
|
|
|
font-size: 20px;
|
|
|
|
background: blue;
|
|
|
|
color: white;
|
|
|
|
border-radius: 15px;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
cursor:pointer;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.zoom_in {
|
|
|
|
top: 10px;
|
|
|
|
left: 10px;
|
2016-09-22 11:12:19 +02:00
|
|
|
|
2016-03-09 11:45:48 +01:00
|
|
|
display: table-cell;
|
|
|
|
position: absolute;
|
|
|
|
font-weight: bolder;
|
|
|
|
font-size: 20px;
|
|
|
|
background: blue;
|
|
|
|
color: white;
|
|
|
|
border-radius: 15px;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
cursor:pointer;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.zoom_out {
|
|
|
|
top: 270px;
|
|
|
|
left: 10px;
|
2016-09-22 11:12:19 +02:00
|
|
|
|
2016-03-09 11:45:48 +01:00
|
|
|
display: table-cell;
|
|
|
|
position: absolute;
|
|
|
|
font-weight: bolder;
|
|
|
|
font-size: 20px;
|
|
|
|
background: blue;
|
|
|
|
color: white;
|
|
|
|
border-radius: 15px;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
cursor:pointer;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title_bar {
|
|
|
|
border-bottom: 1px solid black;
|
|
|
|
}
|
|
|
|
.title_bar .title {
|
|
|
|
font-weight: bolder;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title_bar .open_click {
|
|
|
|
float: right;
|
|
|
|
display: table-cell;
|
|
|
|
font-weight: bolder;
|
|
|
|
font-size: 20px;
|
|
|
|
background: blue none repeat scroll 0% 0%;
|
|
|
|
color: white;
|
|
|
|
width: 17px;
|
|
|
|
height: 17px;
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title_bar .close_click {
|
|
|
|
float: right;
|
|
|
|
display: table-cell;
|
|
|
|
font-weight: bolder;
|
|
|
|
font-size: 20px;
|
|
|
|
background: blue none repeat scroll 0% 0%;
|
|
|
|
color: white;
|
|
|
|
width: 17px;
|
|
|
|
height: 17px;
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin: 1px;
|
2016-05-05 14:21:04 +02:00
|
|
|
}
|
2016-05-25 13:35:05 +02:00
|
|
|
|
|
|
|
/* Visual map */
|
|
|
|
div#vc-controls {
|
|
|
|
position: fixed;
|
|
|
|
top: 30px;
|
|
|
|
right: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#vc-controls div.vc-title, div#vc-controls div.vc-refr {
|
|
|
|
margin-top: 6px;
|
|
|
|
margin-left: 3px;
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
|
|
|
div#vc-controls div.vc-refr>div {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
div#vc-controls img.vc-qr {
|
|
|
|
margin-top: 6px;
|
|
|
|
margin-left: 8px;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
2016-10-20 10:39:27 +02:00
|
|
|
div.simple_value > span.text > p,
|
2016-11-21 08:51:42 +01:00
|
|
|
div.simple_value > span.text > p > span > strong,
|
|
|
|
div.simple_value > span.text > p > strong,
|
|
|
|
div.simple_value > a > span.text p
|
|
|
|
{
|
|
|
|
font-family: monospace !important;
|
2016-09-09 09:46:37 +02:00
|
|
|
white-space: pre;
|
|
|
|
}
|
2016-09-09 09:36:45 +02:00
|
|
|
|
2016-05-25 13:35:05 +02:00
|
|
|
/* Visual map */
|
2016-06-09 11:57:05 +02:00
|
|
|
|
|
|
|
/* jQuery dialog */
|
|
|
|
.no-close .ui-dialog-titlebar-close {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
/* jQuery dialog */
|
2016-09-01 10:50:34 +02:00
|
|
|
|
|
|
|
/* Image open dialog in group events by agents*/
|
|
|
|
#open_agent_groups {
|
|
|
|
cursor: pointer;
|
2016-09-08 15:44:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*Font ttf */
|
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: 'DejaVuSerif-BoldFont';
|
|
|
|
src: url('../fonts/DejaVuSerif-Bold.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
|
|
|
.DejaVuSerif-Bold{
|
|
|
|
font-family: DejaVuSerif-BoldFont;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: 'DejaVuSerif-BoldItalicFont';
|
|
|
|
src: url('../fonts/DejaVuSerif-BoldItalic.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
|
|
|
.DejaVuSerif-BoldItalic{
|
|
|
|
font-family: DejaVuSerif-BoldItalicFont;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: 'DejaVuSerif-ItalicFont';
|
|
|
|
src: url('../fonts/DejaVuSerif-Italic.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
|
|
|
.DejaVuSerif-Italic{
|
|
|
|
font-family: DejaVuSerif-ItalicFont;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: 'DejaVuSerifFont';
|
|
|
|
src: url('../fonts/DejaVuSerif.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
|
|
|
.DejaVuSerif{
|
|
|
|
font-family: DejaVuSerifFont;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: 'DejaVuSerifCondensed-BoldFont';
|
|
|
|
src: url('../fonts/DejaVuSerifCondensed-Bold.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
|
|
|
.DejaVuSerifCondensed-Bold{
|
|
|
|
font-family: DejaVuSerifCondensed-BoldFont;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: 'DejaVuSerifCondensed-BoldItalicFont';
|
|
|
|
src: url('../fonts/DejaVuSerifCondensed-BoldItalic.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
|
|
|
.DejaVuSerifCondensed-BoldItalic{
|
|
|
|
font-family: DejaVuSerifCondensed-BoldItalicFont;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: 'DejaVuSerifCondensed-ItalicFont';
|
|
|
|
src: url('../fonts/DejaVuSerifCondensed-Italic.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
|
|
|
.DejaVuSerifCondensed-Italic{
|
|
|
|
font-family: DejaVuSerifCondensed-ItalicFont;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: 'DejaVuSerifCondensedFont';
|
|
|
|
src: url('../fonts/DejaVuSerifCondensed.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
|
|
|
.DejaVuSerifCondensed{
|
|
|
|
font-family: DejaVuSerifCondensedFont;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: 'FreeSansFont';
|
|
|
|
src: url('../fonts/FreeSans.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
|
|
|
.FreeSans{
|
|
|
|
font-family: FreeSansFont;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: 'FreeSansBoldFont';
|
|
|
|
src: url('../fonts/FreeSansBold.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
|
|
|
.FreeSansBold{
|
|
|
|
font-family: FreeSansBoldFont;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: 'smallfontFont';
|
|
|
|
src: url('../fonts/smallfont.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
|
|
|
.smallfont{
|
|
|
|
font-family: smallfontFont;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: 'unicodeFont';
|
|
|
|
src: url('../fonts/unicode.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
2017-01-20 16:02:34 +01:00
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: 'roboto';
|
|
|
|
src: url('../../fonts/roboto.woff2') format('woff2');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: 'opensans';
|
|
|
|
src: url('../../fonts/opensans.woff2') format('woff2');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: 'lato';
|
|
|
|
src: url('../../fonts/lato.woff2') format('woff2');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: 'leaguegothic';
|
|
|
|
src: url('../../fonts/leaguegothic.woff') format('woff');
|
|
|
|
}
|
|
|
|
|
2016-09-08 15:44:36 +02:00
|
|
|
.unicode{
|
|
|
|
font-family: unicodeFont;
|
2016-09-22 11:12:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#alert_messages{
|
|
|
|
-moz-border-bottom-right-radius: 5px;
|
|
|
|
-webkit-border-bottom-left-radius: 5px;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
border-bottom-left-radius: 5px;
|
2017-02-10 10:18:53 +01:00
|
|
|
z-index:3;
|
2016-09-22 11:12:19 +02:00
|
|
|
position:fixed;
|
2017-03-13 13:25:16 +01:00
|
|
|
width:750px;
|
|
|
|
max-width:750px;
|
|
|
|
top: 20%;
|
2016-09-22 11:12:19 +02:00
|
|
|
background:white;
|
|
|
|
}
|
|
|
|
.modalheader{
|
2016-09-22 11:12:19 +02:00
|
|
|
text-align:center;
|
|
|
|
width:100%;
|
|
|
|
height:37px;
|
|
|
|
left:0px;
|
|
|
|
background-color:#82b92e;
|
2016-09-22 11:12:19 +02:00
|
|
|
}
|
|
|
|
.modalheadertext{
|
2016-09-22 11:12:19 +02:00
|
|
|
color:white;
|
|
|
|
position:relative;
|
|
|
|
font-family:Nunito;
|
|
|
|
font-size:13pt;
|
|
|
|
top:8px;
|
2016-09-22 11:12:19 +02:00
|
|
|
}
|
2016-12-05 15:23:17 +01:00
|
|
|
.modalheaderh1{
|
|
|
|
text-align:center;
|
|
|
|
width:100%;
|
2017-05-25 17:11:35 +02:00
|
|
|
height:26px;
|
2016-12-05 15:23:17 +01:00
|
|
|
left:0px;
|
2017-05-25 17:11:35 +02:00
|
|
|
padding-top:10px;
|
2016-12-05 15:23:17 +01:00
|
|
|
background-color:#82b92e;
|
|
|
|
color:white;
|
|
|
|
position:relative;
|
|
|
|
font-family:Nunito;
|
2017-05-25 17:11:35 +02:00
|
|
|
font-size:11pt;
|
2016-12-05 15:23:17 +01:00
|
|
|
}
|
2016-09-22 11:12:19 +02:00
|
|
|
.modalclosex{
|
2016-09-22 11:12:19 +02:00
|
|
|
cursor:pointer;
|
|
|
|
display:inline;
|
|
|
|
float:right;
|
|
|
|
margin-right:10px;
|
|
|
|
margin-top:10px;
|
2016-09-22 11:12:19 +02:00
|
|
|
}
|
2017-01-26 12:10:28 +01:00
|
|
|
.modalclosex:hover{
|
|
|
|
cursor:pointer;
|
|
|
|
display:inline;
|
|
|
|
float:right;
|
|
|
|
margin-right:10px;
|
|
|
|
margin-top:10px;
|
|
|
|
}
|
2016-09-22 11:12:19 +02:00
|
|
|
.modalcontent{
|
2016-09-22 11:12:19 +02:00
|
|
|
color:black;
|
|
|
|
background:white;
|
2016-09-22 11:12:19 +02:00
|
|
|
}
|
|
|
|
.modalcontentimg{
|
2016-09-22 11:12:19 +02:00
|
|
|
float:left;
|
|
|
|
margin-left:30px;
|
|
|
|
margin-top:30px;
|
|
|
|
margin-bottom:30px;
|
2016-09-22 11:12:19 +02:00
|
|
|
}
|
|
|
|
.modalcontenttext{
|
2016-09-22 11:12:19 +02:00
|
|
|
float:left;
|
|
|
|
text-align:justify;
|
|
|
|
color:black;
|
|
|
|
font-size: 9.5pt;
|
|
|
|
line-height:13pt;
|
|
|
|
margin-top:30px;
|
|
|
|
width:430px;
|
|
|
|
margin-left:30px;
|
2016-09-22 11:12:19 +02:00
|
|
|
}
|
|
|
|
.modalokbutton{
|
2017-01-26 12:10:28 +01:00
|
|
|
transition-property: background-color, color;
|
|
|
|
transition-duration: 1s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color, color;
|
|
|
|
-webkit-transition-duration: 1s;
|
|
|
|
-o-transition-property: background-color, color;
|
|
|
|
-o-transition-duration: 1s;
|
2016-09-22 11:12:19 +02:00
|
|
|
cursor:pointer;
|
|
|
|
text-align:center;
|
|
|
|
margin-right:45px;
|
|
|
|
float:right;
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
margin-bottom:30px;
|
|
|
|
border-radius: 3px;width:90px;height:30px;background-color:white;border: 1px solid #82b92e;
|
2016-09-22 11:12:19 +02:00
|
|
|
}
|
|
|
|
.modalokbuttontext{
|
2017-01-26 12:10:28 +01:00
|
|
|
transition-property: background-color, color;
|
|
|
|
transition-duration: 1s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color, color;
|
|
|
|
-webkit-transition-duration: 1s;
|
|
|
|
-o-transition-property: background-color, color;
|
|
|
|
-o-transition-duration: 1s;
|
2016-09-22 11:12:19 +02:00
|
|
|
color:#82b92e;font-family:Nunito;font-size:10pt;position:relative;top:6px;
|
|
|
|
}
|
2017-01-26 12:10:28 +01:00
|
|
|
|
|
|
|
.modalokbutton:hover {
|
|
|
|
transition-property: background-color, color;
|
|
|
|
transition-duration: 1s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color, color;
|
|
|
|
-webkit-transition-duration: 1s;
|
|
|
|
-o-transition-property: background-color, color;
|
|
|
|
-o-transition-duration: 1s;
|
|
|
|
background-color:#82b92e;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modalokbutton:hover .modalokbuttontext {
|
|
|
|
transition-property: background-color, color;
|
|
|
|
transition-duration: 1s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color, color;
|
|
|
|
-webkit-transition-duration: 1s;
|
|
|
|
-o-transition-property: background-color, color;
|
|
|
|
-o-transition-duration: 1s;
|
|
|
|
color:white;
|
|
|
|
}
|
|
|
|
|
2016-09-22 11:12:19 +02:00
|
|
|
.modalgobutton{
|
2017-01-26 12:10:28 +01:00
|
|
|
transition-property: background-color, color;
|
|
|
|
transition-duration: 1s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color, color;
|
|
|
|
-webkit-transition-duration: 1s;
|
|
|
|
-o-transition-property: background-color, color;
|
|
|
|
-o-transition-duration: 1s;
|
2016-09-22 11:12:19 +02:00
|
|
|
cursor:pointer;text-align:center;margin-right:15px;margin-bottom:30px;float:right;-moz-border-radius: 3px;
|
|
|
|
-webkit-border-radius: 3px;border-radius: 3px;width:240px;height:30px;background-color:white;border: 1px solid #82b92e;
|
2016-09-22 11:12:19 +02:00
|
|
|
}
|
|
|
|
.modalgobuttontext{
|
2017-01-26 12:10:28 +01:00
|
|
|
transition-property: background-color, color;
|
|
|
|
transition-duration: 1s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color, color;
|
|
|
|
-webkit-transition-duration: 1s;
|
|
|
|
-o-transition-property: background-color, color;
|
|
|
|
-o-transition-duration: 1s;
|
2016-09-22 11:12:19 +02:00
|
|
|
color:#82b92e;font-family:Nunito;font-size:10pt;position:relative;top:6px;
|
|
|
|
}
|
|
|
|
|
2017-01-26 12:10:28 +01:00
|
|
|
.modalgobutton:hover {
|
|
|
|
transition-property: background-color, color;
|
|
|
|
transition-duration: 1s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color, color;
|
|
|
|
-webkit-transition-duration: 1s;
|
|
|
|
-o-transition-property: background-color, color;
|
|
|
|
-o-transition-duration: 1s;
|
|
|
|
background-color:#82b92e;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modalgobutton:hover .modalgobuttontext {
|
|
|
|
transition-property: background-color, color;
|
|
|
|
transition-duration: 1s;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
-webkit-transition-property: background-color, color;
|
|
|
|
-webkit-transition-duration: 1s;
|
|
|
|
-o-transition-property: background-color, color;
|
|
|
|
-o-transition-duration: 1s;
|
|
|
|
color:white;
|
|
|
|
}
|
|
|
|
|
2016-09-22 11:12:19 +02:00
|
|
|
|
|
|
|
#opacidad{
|
|
|
|
opacity:0.5;
|
|
|
|
z-index:1;
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
position:absolute;
|
|
|
|
left:0px;
|
|
|
|
top:0px;
|
|
|
|
}
|
2016-09-22 11:12:19 +02:00
|
|
|
|
|
|
|
.textodialogo{
|
|
|
|
margin-left: 0px;
|
|
|
|
color:#333;
|
|
|
|
padding:20px;
|
|
|
|
font-size:9pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cargatextodialogo{
|
|
|
|
max-width:58.5%;
|
|
|
|
width:58.5%;
|
|
|
|
min-width:58.5%;
|
|
|
|
float:left;
|
|
|
|
margin-left: 0px;
|
|
|
|
font-size:18pt;
|
|
|
|
padding:20px;
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cargatextodialogo p, .cargatextodialogo b, .cargatextodialogo a{
|
|
|
|
font-size:18pt;
|
|
|
|
}
|
2016-10-14 10:16:21 +02:00
|
|
|
|
|
|
|
.readonly{
|
|
|
|
background-color: #dedede !important;
|
|
|
|
}
|
2016-10-20 16:26:05 +02:00
|
|
|
|
|
|
|
.input_error {
|
|
|
|
border: 1px solid red;
|
2017-01-13 14:09:56 +01:00
|
|
|
}
|
|
|
|
|
2017-01-16 13:31:56 +01:00
|
|
|
#toolbox > input{
|
|
|
|
border-width:0px 1px 0px 0px;
|
|
|
|
border-color: lightgray;
|
|
|
|
}
|
|
|
|
|
|
|
|
#toolbox > input.service_min{
|
|
|
|
border-width:0px 0px 0px 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#toolbox > input.grid_min{
|
|
|
|
border-width:0px 0px 0px 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tinymce{
|
|
|
|
padding-top:20px;
|
2017-01-18 17:39:04 +01:00
|
|
|
}
|
|
|
|
|
2017-01-13 14:09:56 +01:00
|
|
|
#filter_event_status,
|
|
|
|
#filter_event_severity,
|
|
|
|
#filter_event_type {
|
|
|
|
width:50%;
|
2017-02-27 14:28:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.rowPair:hover, .rowOdd:hover{
|
|
|
|
background-color: #eee;
|
|
|
|
}
|
|
|
|
.databox.data > tbody > tr:hover{
|
|
|
|
background-color: #eee;
|
|
|
|
}
|
|
|
|
.checkselected{
|
|
|
|
background-color: #eee;
|
2017-02-28 15:41:03 +01:00
|
|
|
}
|
|
|
|
.tag-wrapper{
|
|
|
|
padding: 0 10px 0 0;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pandora-tag{
|
|
|
|
float:left;
|
|
|
|
margin-bottom:18px;
|
|
|
|
padding:1px 6px 1px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pandora-tag-title{
|
|
|
|
color: white;
|
|
|
|
background-color: #373737;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 6px 6px 6px 10px;
|
|
|
|
border: #373737;
|
|
|
|
border-width: 1px;
|
|
|
|
border-top-style: solid;
|
|
|
|
border-top-left-radius: 12px;
|
|
|
|
border-left-style: solid;
|
|
|
|
border-bottom-left-radius: 12px;
|
|
|
|
border-bottom-style: solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pandora-tag-value{
|
|
|
|
color: #373737;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 6px 10px 6px 6px;
|
|
|
|
border: #373737;
|
|
|
|
border-width: 1px;
|
|
|
|
border-top-style: solid;
|
|
|
|
border-top-right-radius: 12px;
|
|
|
|
border-right-style: solid;
|
|
|
|
border-bottom-right-radius: 12px;
|
|
|
|
border-bottom-style: solid;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
styles header login
|
|
|
|
*/
|
|
|
|
div#header_login{
|
|
|
|
width: 100%;
|
|
|
|
height: 65px;
|
|
|
|
background-color: rgba(255, 255, 255, 0.06);
|
|
|
|
}
|
|
|
|
|
|
|
|
div#icon_custom_pandora{
|
|
|
|
float: left;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-left: 4%;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#list_icon_docs_support{
|
|
|
|
float: right;
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-right: 4%;
|
|
|
|
}
|
|
|
|
|
2017-03-15 15:23:28 +01:00
|
|
|
div#list_icon_docs_support ul{
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2017-03-15 10:12:18 +01:00
|
|
|
div#list_icon_docs_support ul li{
|
|
|
|
display: inline-block;
|
|
|
|
color:white;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 5px;
|
2017-03-15 15:23:28 +01:00
|
|
|
font-size: 10pt;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
li#li_margin_left{
|
|
|
|
margin-left: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
styles login form
|
|
|
|
*/
|
|
|
|
|
|
|
|
div.container_login{
|
|
|
|
margin-top: 10%;
|
2018-01-08 13:01:29 +01:00
|
|
|
margin-left: 5%;
|
|
|
|
margin-right: 5%;
|
2017-03-22 15:26:54 +01:00
|
|
|
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.login_page {
|
|
|
|
width: 35%;
|
|
|
|
min-height: 600px;
|
|
|
|
float:left;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.login_page form {
|
|
|
|
border-right:1px solid #868686;
|
|
|
|
padding-top: 30px;
|
|
|
|
padding-bottom: 50px;
|
|
|
|
min-width: 400px;
|
|
|
|
max-height: 600px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.login_logo_icon {
|
|
|
|
margin-bottom: 40px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.login_logo_icon img{
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 150px;
|
|
|
|
}
|
2017-12-21 13:45:57 +01:00
|
|
|
|
|
|
|
|
2017-03-15 10:12:18 +01:00
|
|
|
div.login_double_auth_code,
|
|
|
|
div.login_nick,
|
|
|
|
div.login_pass {
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 70%;
|
|
|
|
height: 40px;
|
|
|
|
background-color: rgba(255, 255, 255, 0.20) !important;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
min-width: 260px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.login_nick img,
|
|
|
|
div.login_pass img{
|
|
|
|
vertical-align: middle;
|
|
|
|
margin: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
div.login_nick input,
|
|
|
|
div.login_pass input{
|
|
|
|
background-color: rgba(255, 255, 255, 0.00) !important;
|
|
|
|
border:0px !important;
|
|
|
|
color:white !important;
|
|
|
|
border-radius: 0px;
|
|
|
|
width: 89%;
|
|
|
|
height: 40px;
|
|
|
|
font-size: 9pt;
|
|
|
|
padding: 0px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
div.login_nick input:focus,
|
|
|
|
div.login_pass input:focus{
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.login_nick input:-webkit-autofill,
|
|
|
|
div.login_nick input:-webkit-autofill:hover,
|
|
|
|
div.login_nick input:-webkit-autofill:focus,
|
|
|
|
div.login_nick input:-webkit-autofill:active,
|
|
|
|
div.login_pass input:-webkit-autofill,
|
|
|
|
div.login_pass input:-webkit-autofill:hover,
|
|
|
|
div.login_pass input:-webkit-autofill:focus,
|
|
|
|
div.login_pass input:-webkit-autofill:active {
|
|
|
|
transition: background-color 10000s ease-in-out 0s;
|
|
|
|
-webkit-box-shadow: 0 0 0px 0px transparent inset !important;
|
|
|
|
-webkit-text-fill-color: white !important;
|
|
|
|
border:0px;
|
|
|
|
width: 89%;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.login_nick input::-webkit-input-placeholder,
|
|
|
|
div.login_pass input::-webkit-input-placeholder {
|
|
|
|
color:white;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.login_pass img,
|
|
|
|
div.login_nick img{
|
|
|
|
width: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.login_pass div,
|
|
|
|
div.login_nick div{
|
|
|
|
float: left;
|
|
|
|
width: 11%;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.login_button{
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 70%;
|
|
|
|
height: 40px;
|
|
|
|
background-color: rgb(25, 25, 25);
|
|
|
|
border: 1px solid white;
|
|
|
|
min-width: 260px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.login_button input {
|
|
|
|
width: 100%;
|
|
|
|
background-color: rgb(25, 25, 25) !important;
|
|
|
|
text-align: center;
|
|
|
|
border:0px;
|
|
|
|
border-radius: 0px;
|
|
|
|
height: 40px;
|
|
|
|
padding: 0px;
|
|
|
|
font-size: 9pt;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.login_data {
|
|
|
|
width: 65%;
|
|
|
|
min-height: 600px;
|
|
|
|
float:left;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.text_banner_login{
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 60px;
|
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.text_banner_login span{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.span1{
|
|
|
|
font-size: 3vw;
|
2017-03-16 18:41:53 +01:00
|
|
|
font-family: 'lato-thin';
|
|
|
|
color: white;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
span.span2{
|
|
|
|
font-size: 3vw;
|
2017-03-21 11:44:46 +01:00
|
|
|
font-family: 'lato-bolder';
|
2017-03-16 18:41:53 +01:00
|
|
|
color: white;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.img_banner_login{
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.img_banner_login img{
|
|
|
|
max-width: 70%;
|
|
|
|
min-width: 70%;
|
|
|
|
max-height: 50%;
|
|
|
|
min-height: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (max-width: 1200px) {
|
|
|
|
span.span1{
|
|
|
|
font-size: 30pt;
|
|
|
|
}
|
|
|
|
span.span2{
|
|
|
|
font-size: 30pt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*modal windows login*/
|
|
|
|
div.content_alert{
|
2017-03-22 15:26:54 +01:00
|
|
|
width: 98%;
|
2017-03-15 10:12:18 +01:00
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.icon_message_alert{
|
|
|
|
float: left;
|
|
|
|
width: 25%;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
div.icon_message_alert img{
|
|
|
|
width: 85px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.content_message_alert{
|
|
|
|
|
|
|
|
width: 75%;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.text_message_alert{
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.text_message_alert h1{
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.text_message_alert p{
|
|
|
|
margin: 0px;
|
|
|
|
font-size: 10.3pt;
|
|
|
|
line-height: 14pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.button_message_alert{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.button_message_alert input{
|
|
|
|
float: right;
|
|
|
|
width: 87px;
|
|
|
|
height: 33px;
|
|
|
|
color: #82b92e;
|
|
|
|
border: 1px solid #82b92e;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-right: 20px;
|
|
|
|
margin-top: 20px;
|
|
|
|
font-size: 10pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.form_message_alert{
|
|
|
|
width: 90%;
|
|
|
|
clear: both;
|
|
|
|
padding-top: 20px;
|
|
|
|
padding-left: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.form_message_alert ul li{
|
|
|
|
display: inline-block;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.form_message_alert ul li input{
|
|
|
|
border: none;
|
|
|
|
background-color: #dadada !important;
|
|
|
|
border-radius: 0px;
|
|
|
|
height: 17px;
|
|
|
|
width: 145px;
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.form_message_alert ul li label{
|
|
|
|
font-size: 10pt;
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.form_message_alert h4{
|
|
|
|
margin: 0px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.button_message_alert_form input{
|
|
|
|
float: right;
|
|
|
|
width: 87px;
|
|
|
|
height: 33px;
|
|
|
|
color: #82b92e;
|
|
|
|
border: 1px solid #82b92e;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 10pt;
|
|
|
|
margin-right: 25px;
|
|
|
|
}
|
|
|
|
|
2017-03-17 13:40:17 +01:00
|
|
|
.ui-dialog .ui-dialog-titlebar {
|
|
|
|
background-color: #82b92e !important;
|
|
|
|
}
|
|
|
|
|
2017-03-21 11:44:46 +01:00
|
|
|
/*
|
|
|
|
styles help pandora
|
|
|
|
*/
|
|
|
|
|
|
|
|
div#main_help_new {
|
|
|
|
text-align: center;
|
|
|
|
padding: 20px;
|
|
|
|
border-bottom: 1px solid #c2c2c2;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#main_help_new_content {
|
|
|
|
padding-left: 30px;
|
|
|
|
padding-right: 30px;
|
|
|
|
padding-bottom: 20px;
|
|
|
|
padding-top: 10px;
|
|
|
|
background: white;
|
|
|
|
height: 100%;
|
2017-08-21 15:58:19 +02:00
|
|
|
font-size: 12pt;
|
|
|
|
font-family: 'lato-bolder';
|
2017-03-21 11:44:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div#main_help_new_content h1 {
|
|
|
|
font-family: 'lato-boldest';
|
|
|
|
font-size: 14pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#main_help_new_content p {
|
|
|
|
font-family: 'lato-bolder';
|
|
|
|
font-size: 12pt;
|
|
|
|
}
|
2017-08-21 15:58:19 +02:00
|
|
|
div#main_help_new_content b {
|
|
|
|
font-family: 'lato-bolder';
|
|
|
|
font-size: 12pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#main_help_new_content li {
|
|
|
|
font-family: 'lato-bolder';
|
|
|
|
font-size: 12pt;
|
|
|
|
}
|
2017-03-21 11:44:46 +01:00
|
|
|
|
|
|
|
div#footer_help{
|
|
|
|
background: #333;
|
|
|
|
text-align: center;
|
|
|
|
padding: 10px;
|
2017-03-22 15:26:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*center ui dialog center*/
|
|
|
|
.ui-dialog-titlebar .ui-icon-closethick {
|
|
|
|
margin-top: -5px !important;
|
2017-06-14 12:45:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*view-agents lastest events for this agent*/
|
|
|
|
#div_all_events_24h{
|
|
|
|
padding: 4px;
|
2017-07-24 10:53:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*styles graph conteiner*/
|
|
|
|
.graph_conteiner_inside > .parent_graph{
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.graph_conteiner_inside > .parent_graph > .menu_graph{
|
|
|
|
left: 90% !important;
|
|
|
|
}
|
|
|
|
|
2017-11-23 18:01:32 +01:00
|
|
|
.graph_conteiner_inside > .parent_graph > .graph{
|
2017-07-24 10:53:04 +02:00
|
|
|
width: 90% !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.graph_conteiner_inside > div > .nodata_container > .nodata_text {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.graph_conteiner_inside > div > .nodata_container{
|
|
|
|
background-size: 120px 80px !important;
|
2017-08-09 11:29:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#mssg_error_div{
|
|
|
|
color: red;
|
|
|
|
font-size: 12px;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* View WUX
|
|
|
|
*/
|
|
|
|
|
|
|
|
.wux_global_result_container{
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 30px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wux_global_result_title{
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
color:white;
|
|
|
|
background-color: #373737;
|
|
|
|
border: 1px solid #373737;
|
2017-08-18 12:02:47 +02:00
|
|
|
height: 28px;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.wux_global_result_title p {
|
|
|
|
margin: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wux_global_result_content{
|
|
|
|
width: 100%;
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
height: 120px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wux_global_result_content_left{
|
|
|
|
float:left;
|
|
|
|
width: 40%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wux_global_result_content_left ul{
|
|
|
|
display: inline-flex;
|
2017-08-18 12:02:47 +02:00
|
|
|
margin-top: 15px;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.wux_global_result_content_left ul li p{
|
2017-08-18 12:02:47 +02:00
|
|
|
margin-top: 35px;
|
2017-08-17 18:38:12 +02:00
|
|
|
margin-right: 10px;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
2017-08-18 12:02:47 +02:00
|
|
|
.wux_global_result_content_left ul li p b{
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
2017-08-17 18:38:12 +02:00
|
|
|
.wux_global_result_content_right{
|
|
|
|
float:right;
|
|
|
|
width: 60%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wux_global_result_content_right ul{
|
|
|
|
display: inline-flex;
|
2017-08-18 12:02:47 +02:00
|
|
|
margin-top: 15px;
|
|
|
|
margin-left:100px;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.wux_global_result_content_right ul li p{
|
2017-08-18 13:29:07 +02:00
|
|
|
margin-top: 36px;
|
2017-08-17 18:38:12 +02:00
|
|
|
margin-right: 10px;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
2017-08-18 12:02:47 +02:00
|
|
|
.wux_global_result_content_right ul li p b{
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
2017-08-17 18:38:12 +02:00
|
|
|
.wux_transaction_container{
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wux_result_transaction{
|
|
|
|
width: 33%;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wux_transaction_graphs{
|
|
|
|
width: 33%;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wux_transaction_graphs_pie{
|
|
|
|
width: 33%;
|
|
|
|
float: left;
|
2017-08-30 16:09:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pagination_show_more{
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 10px;
|
2017-10-03 15:20:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.dashed{
|
|
|
|
stroke-dasharray: 10;
|
|
|
|
|
|
|
|
}
|
|
|
|
.path {
|
|
|
|
stroke-dasharray: 500;
|
|
|
|
stroke-dashoffset: 500;
|
|
|
|
animation: dash 15s linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes dash {
|
|
|
|
from {
|
|
|
|
stroke-dashoffset: 500;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
stroke-dashoffset: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.route {
|
|
|
|
fill: none;
|
2017-10-03 16:40:01 +02:00
|
|
|
transition: all 2s ease-in-out;
|
2017-10-03 15:20:35 +02:00
|
|
|
}
|
2017-11-24 10:59:44 +01:00
|
|
|
|
|
|
|
.limit_scroll{
|
|
|
|
max-width: 800px;
|
|
|
|
overflow-x:scroll;
|
2018-02-06 10:46:59 +01:00
|
|
|
}
|
2017-12-28 15:13:06 +01:00
|
|
|
#is_favourite ul.container{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
align-content: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#is_favourite ul.container a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#is_favourite ul.container a:hover li {
|
|
|
|
background: #E2E2E2;
|
|
|
|
}
|
|
|
|
|
|
|
|
#is_favourite ul.container a li{
|
|
|
|
min-width: 250px;
|
|
|
|
height: 80px;
|
|
|
|
margin: 10px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
background: #f9faf9;
|
|
|
|
}
|
|
|
|
|
|
|
|
#is_favourite ul.container a li div.icon_img{
|
|
|
|
width: 30%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#is_favourite ul.container a li div.text{
|
|
|
|
min-width: 50%;
|
|
|
|
font-family: Verdana;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #3F3F3F;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
form ul.form_flex{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
align-content: center;
|
|
|
|
justify-content: space-around;
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 20px;
|
|
|
|
background: #f9faf9;
|
|
|
|
}
|
|
|
|
|
|
|
|
form ul.form_flex li{
|
|
|
|
flex: auto;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
form ul.form_flex li.first_elements{
|
|
|
|
min-width: 550px;
|
|
|
|
}
|
|
|
|
|
|
|
|
form ul.form_flex li.second_elements{
|
|
|
|
min-width: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
form ul.form_flex li ul{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-around;
|
|
|
|
}
|
|
|
|
|
|
|
|
form ul.form_flex li ul{
|
|
|
|
flex-basis: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
form ul.form_flex li ul li{
|
|
|
|
height: 50px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2018-01-30 17:38:29 +01:00
|
|
|
|
|
|
|
#modal_module_popup_close:hover{
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal_module_list:hover{
|
|
|
|
cursor: pointer;
|
2018-02-14 18:37:27 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#main_cluster {
|
|
|
|
max-width:1770px;
|
|
|
|
margin:0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sub_cluster_1 {
|
|
|
|
width:400px;
|
|
|
|
float: left;
|
|
|
|
margin-left: 30px;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
vertical-align: top;
|
|
|
|
border:1px solid #e7e9ea;
|
|
|
|
height:150px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.sub_cluster_2 {
|
|
|
|
width:833px;
|
|
|
|
float: left;
|
|
|
|
margin-left: 30px;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
vertical-align: top;
|
|
|
|
border:1px solid #e7e9ea;
|
|
|
|
height:150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sub_cluster_header {
|
|
|
|
width:100%;
|
|
|
|
height: 30px;
|
|
|
|
background-color: #373737;
|
|
|
|
color:white;
|
|
|
|
text-align:center;
|
|
|
|
font-size: 9pt;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sub_cluster_body {
|
|
|
|
width:100%;
|
|
|
|
height: 120px;
|
|
|
|
background-color: #f9faf9;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sub_cluster_body_3 {
|
|
|
|
width:100%;
|
|
|
|
height: 120px;
|
|
|
|
background-color: #f9faf9;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cluster_map {
|
|
|
|
border:1px solid lightgray;
|
|
|
|
width:900px;
|
|
|
|
height:500px;
|
|
|
|
float: left;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cluster_status_content {
|
|
|
|
width: 90%;
|
|
|
|
height:30px;
|
|
|
|
margin:0px auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cluster_status_bar {
|
|
|
|
width: 85%;
|
|
|
|
height:100%;
|
|
|
|
float:left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status_animation {
|
|
|
|
width: 1%;
|
|
|
|
height:100%;
|
|
|
|
left:0%;
|
|
|
|
background-color: red;
|
|
|
|
position:relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cluster_status_button {
|
|
|
|
float:left;
|
|
|
|
width:10%;
|
|
|
|
margin-left:5%;;
|
|
|
|
}
|
|
|
|
|
|
|
|
#last_contact_content{
|
|
|
|
width: 90%;
|
|
|
|
height:60px;
|
|
|
|
margin:0px auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#last_contact_clock {
|
|
|
|
width: 15%;
|
|
|
|
height:100%;
|
|
|
|
float:left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#last_contact_date {
|
|
|
|
float:left;
|
|
|
|
height:60px;
|
|
|
|
width:80%;
|
|
|
|
margin-left:5%;
|
|
|
|
text-align:center;
|
|
|
|
display: flex;
|
2018-05-10 08:52:45 +02:00
|
|
|
justify-content: center;
|
|
|
|
align-content: center;
|
|
|
|
flex-direction: column;
|
2018-02-14 18:37:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#last_contact_date_text {
|
|
|
|
font-size:14pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.balanced_module_item {
|
|
|
|
float:left;
|
|
|
|
margin-top: 11.5px;
|
|
|
|
margin-left: 5%;
|
|
|
|
height: 25px;
|
|
|
|
width:90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.module_icon {
|
|
|
|
float:left;
|
|
|
|
width:10%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal_module_list {
|
|
|
|
float:left;
|
|
|
|
width: 90%;
|
|
|
|
height:100%;
|
|
|
|
display: flex;
|
2018-05-10 08:52:45 +02:00
|
|
|
justify-content: center;
|
|
|
|
align-content: center;
|
|
|
|
flex-direction: column;
|
2018-02-14 18:37:27 +01:00
|
|
|
}
|
|
|
|
|
2018-03-15 16:03:46 +01:00
|
|
|
#snmp_data {
|
|
|
|
background: #f9faf9;
|
|
|
|
}
|
|
|
|
#snmp_data .databox {
|
|
|
|
border: 0px;
|
|
|
|
}
|
2018-03-23 11:08:48 +01:00
|
|
|
|
2018-05-04 12:26:18 +02:00
|
|
|
.yAxis.y1Axis > .tickLabel {
|
2018-03-21 13:40:15 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
line-height: 1.05em!important;
|
2018-05-04 12:26:18 +02:00
|
|
|
width: auto!important;
|
2018-03-21 13:40:15 +01:00
|
|
|
}
|
2018-03-23 11:08:48 +01:00
|
|
|
|
2018-04-25 12:32:58 +02:00
|
|
|
.pandora_confirm_dialog .ui-dialog-buttonset {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
margin-left: 10px;
|
|
|
|
float: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pandora_confirm_dialog .ui-dialog-buttonset button{
|
|
|
|
flex: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#pandora_confirm_dialog_text h3{
|
|
|
|
margin-left: 20px;
|
|
|
|
margin-right: 20px;
|
|
|
|
text-align: center;
|
2018-05-10 08:52:45 +02:00
|
|
|
}
|
2018-05-09 18:50:45 +02:00
|
|
|
|
|
|
|
.pandora_upper {
|
|
|
|
text-transform: uppercase;
|
2018-05-21 14:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.dialog-grayed {
|
|
|
|
background: #373737 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dialog-grayed .ui-dialog-buttonpane {
|
|
|
|
background: #373737 !important;
|
2018-05-28 17:54:53 +02:00
|
|
|
}
|
2018-08-13 12:42:30 +02:00
|
|
|
|
|
|
|
a.down_arrow {
|
|
|
|
content: url("../../images/down.png");
|
|
|
|
max-width: 21px;
|
|
|
|
max-height: 21px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.up_arrow {
|
|
|
|
content: url("../../images/down.png");
|
|
|
|
transform: rotate(180deg);
|
|
|
|
max-width: 21px;
|
|
|
|
max-height: 21px;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr:last-child > td > a.down_arrow, tr:first-child > td > a.up_arrow {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|