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
|
|
|
|
// ==========================================================
|
2019-01-24 11:10:49 +01:00
|
|
|
// Copyright (c) 2004-2019 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 */
|
2019-01-24 11:10:49 +01:00
|
|
|
/*@import url(tree.css);
|
|
|
|
@import url(fixed-bottom-box.css);*/
|
2015-01-19 13:32:11 +01:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - GENERAL STYLES -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
@font-face {
|
2019-02-07 08:59:45 +01:00
|
|
|
font-family: "Nunito";
|
2019-01-24 11:10:49 +01:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
2019-02-07 08:59:45 +01:00
|
|
|
src: local("Nunito-Regular"), url(../../fonts/nunito.woff) format("woff");
|
2019-01-24 11:10:49 +01:00
|
|
|
}
|
|
|
|
@font-face {
|
2019-02-07 08:59:45 +01:00
|
|
|
font-family: "lato-thin";
|
|
|
|
src: url("../../fonts/Lato-Hairline.ttf");
|
2019-01-24 11:10:49 +01:00
|
|
|
}
|
|
|
|
@font-face {
|
2019-02-07 08:59:45 +01:00
|
|
|
font-family: "lato-bolder";
|
|
|
|
src: url("../../fonts/Lato-Light.ttf");
|
2019-01-24 11:10:49 +01:00
|
|
|
}
|
|
|
|
@font-face {
|
2019-02-07 08:59:45 +01:00
|
|
|
font-family: "lato-boldest";
|
|
|
|
src: url("../../fonts/Lato-Regular.ttf");
|
2019-01-24 11:10:49 +01:00
|
|
|
}
|
2007-02-23 10:08:26 +01:00
|
|
|
* {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-family: verdana, sans-serif;
|
|
|
|
letter-spacing: 0.03pt;
|
|
|
|
font-size: 8pt;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2010-01-18 15:23:30 +01:00
|
|
|
svg * {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 11pt;
|
|
|
|
}
|
2007-05-18 11:29:54 +02:00
|
|
|
body {
|
2019-01-23 15:30:46 +01:00
|
|
|
background-color: #fff;
|
|
|
|
margin: 0 auto;
|
2009-05-29 11:28:48 +02:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
input,
|
|
|
|
textarea {
|
|
|
|
border: 1px solid #ddd;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2007-04-18 11:58:26 +02:00
|
|
|
textarea {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding: 5px;
|
|
|
|
min-height: 100px;
|
|
|
|
width: 99%;
|
2007-05-07 17:32:03 +02:00
|
|
|
}
|
2013-04-17 10:21:22 +02:00
|
|
|
input {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding: 2px 3px 4px 3px;
|
|
|
|
vertical-align: middle;
|
2013-04-17 10:21:22 +02:00
|
|
|
}
|
2014-05-29 12:32:52 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
input[type="checkbox"] {
|
|
|
|
display: inline !important;
|
2014-05-29 12:32:52 +02:00
|
|
|
}
|
2013-04-17 10:21:22 +02:00
|
|
|
select {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding: 2px 3px 3px 3px;
|
|
|
|
vertical-align: middle;
|
2019-01-25 09:54:53 +01:00
|
|
|
border: 1px solid #ddd;
|
2007-04-18 11:58:26 +02:00
|
|
|
}
|
2009-01-26 17:48:22 +01:00
|
|
|
input.button {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-family: Arial, Sans-serif;
|
|
|
|
border: 4px solid #ccc;
|
|
|
|
background: #fff;
|
|
|
|
padding: 2px 3px;
|
|
|
|
margin: 10px 15px;
|
2007-04-18 11:58:26 +02:00
|
|
|
}
|
2013-10-07 10:38:41 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
input[type="submit"],
|
|
|
|
input[type="button"] {
|
|
|
|
cursor: pointer;
|
2013-10-07 10:38:41 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4 {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1em;
|
|
|
|
font-family: Arial, Sans-serif;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #3f3f3f;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
padding-top: 7px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
h1 {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 16px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
h2 {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 15px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2007-05-27 04:55:55 +02:00
|
|
|
h3 {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 14px;
|
2007-06-07 19:46:38 +02:00
|
|
|
}
|
|
|
|
h4 {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: 13px;
|
|
|
|
color: #3f3f3f;
|
|
|
|
text-transform: none;
|
2007-05-27 04:55:55 +02:00
|
|
|
}
|
2007-02-23 10:08:26 +01:00
|
|
|
a {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #3f3f3f;
|
|
|
|
text-decoration: none;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
a:hover {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #373737;
|
|
|
|
text-decoration: underline;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2019-02-07 08:59:45 +01:00
|
|
|
a:focus,
|
|
|
|
input:focus,
|
|
|
|
button:focus {
|
|
|
|
outline-width: 0;
|
|
|
|
outline: 0;
|
2007-05-18 14:56:05 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
th > label {
|
2019-02-07 08:59:45 +01:00
|
|
|
padding-top: 7px;
|
2007-05-18 14:56:05 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
input:disabled {
|
2019-02-07 08:59:45 +01:00
|
|
|
background-color: #ddd !important;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
textarea:disabled {
|
2019-02-07 08:59:45 +01:00
|
|
|
background-color: #ddd !important;
|
2013-04-22 12:31:20 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
select:disabled {
|
2019-02-07 08:59:45 +01:00
|
|
|
background-color: #ddd !important;
|
2013-04-22 12:31:20 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
ul {
|
2019-02-07 08:59:45 +01:00
|
|
|
list-style-type: none;
|
|
|
|
padding-left: 0;
|
|
|
|
margin-left: 0;
|
2013-04-22 12:31:20 +02:00
|
|
|
}
|
2019-02-07 08:59:45 +01:00
|
|
|
code,
|
|
|
|
pre {
|
|
|
|
font-family: courier, serif;
|
2013-04-22 12:31:20 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
fieldset {
|
2019-02-07 08:59:45 +01:00
|
|
|
background-color: #f9faf9;
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
padding: 0.5em;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
position: relative;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
fieldset legend {
|
2019-02-07 08:59:45 +01:00
|
|
|
font-size: 1.1em;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 20px;
|
|
|
|
color: #3f3f3f;
|
2015-02-03 13:37:56 +01:00
|
|
|
}
|
2019-02-07 08:59:45 +01:00
|
|
|
td input[type="checkbox"] {
|
2019-01-24 11:10:49 +01:00
|
|
|
padding: 10px;
|
|
|
|
margin-top: 2px;
|
|
|
|
display: table-cell;
|
2015-02-03 13:37:56 +01:00
|
|
|
}
|
2019-02-07 08:59:45 +01:00
|
|
|
input[type="image"] {
|
|
|
|
border: 0px;
|
|
|
|
background-color: transparent !important;
|
2015-02-03 13:37:56 +01:00
|
|
|
}
|
2019-02-07 08:59:45 +01:00
|
|
|
table,
|
|
|
|
img {
|
|
|
|
border: 0px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2019-02-07 08:59:45 +01:00
|
|
|
table pre {
|
|
|
|
white-space: pre-wrap;
|
2017-02-23 12:26:48 +01:00
|
|
|
}
|
2019-02-07 08:59:45 +01:00
|
|
|
tr:first-child > th {
|
|
|
|
background-color: #373737;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
th {
|
2019-02-07 08:59:45 +01:00
|
|
|
color: #fff;
|
|
|
|
background-color: #666;
|
|
|
|
font-size: 7.5pt;
|
|
|
|
letter-spacing: 0.3pt;
|
2007-05-21 12:50:03 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
|
|
|
|
/* --- Font ttf --- */
|
2019-02-07 08:59:45 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "DejaVuSerif-BoldFont";
|
|
|
|
src: url("../fonts/DejaVuSerif-Bold.ttf") format("truetype");
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
.DejaVuSerif-Bold {
|
|
|
|
font-family: DejaVuSerif-BoldFont;
|
2007-05-27 04:55:55 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "DejaVuSerif-BoldItalicFont";
|
|
|
|
src: url("../fonts/DejaVuSerif-BoldItalic.ttf") format("truetype");
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
.DejaVuSerif-BoldItalic {
|
|
|
|
font-family: DejaVuSerif-BoldItalicFont;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "DejaVuSerif-ItalicFont";
|
|
|
|
src: url("../fonts/DejaVuSerif-Italic.ttf") format("truetype");
|
2011-06-29 12:33:27 +02:00
|
|
|
}
|
2015-04-09 15:04:23 +02:00
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
.DejaVuSerif-Italic {
|
|
|
|
font-family: DejaVuSerif-ItalicFont;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "DejaVuSerifFont";
|
|
|
|
src: url("../fonts/DejaVuSerif.ttf") format("truetype");
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
.DejaVuSerif {
|
|
|
|
font-family: DejaVuSerifFont;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "DejaVuSerifCondensed-BoldFont";
|
|
|
|
src: url("../fonts/DejaVuSerifCondensed-Bold.ttf") format("truetype");
|
2014-03-04 15:49:56 +01:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
.DejaVuSerifCondensed-Bold {
|
|
|
|
font-family: DejaVuSerifCondensed-BoldFont;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "DejaVuSerifCondensed-BoldItalicFont";
|
|
|
|
src: url("../fonts/DejaVuSerifCondensed-BoldItalic.ttf") format("truetype");
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
.DejaVuSerifCondensed-BoldItalic {
|
|
|
|
font-family: DejaVuSerifCondensed-BoldItalicFont;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "DejaVuSerifCondensed-ItalicFont";
|
|
|
|
src: url("../fonts/DejaVuSerifCondensed-Italic.ttf") format("truetype");
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
.DejaVuSerifCondensed-Italic {
|
|
|
|
font-family: DejaVuSerifCondensed-ItalicFont;
|
2014-05-21 12:44:36 +02:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "DejaVuSerifCondensedFont";
|
|
|
|
src: url("../fonts/DejaVuSerifCondensed.ttf") format("truetype");
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2009-05-13 19:00:58 +02:00
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
.DejaVuSerifCondensed {
|
|
|
|
font-family: DejaVuSerifCondensedFont;
|
2007-05-07 17:32:03 +02:00
|
|
|
}
|
2009-05-13 19:00:58 +02:00
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "FreeSansFont";
|
|
|
|
src: url("../fonts/FreeSans.ttf") format("truetype");
|
2014-08-04 18:50:36 +02:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
.FreeSans {
|
|
|
|
font-family: FreeSansFont;
|
2007-05-07 17:32:03 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "FreeSansBoldFont";
|
|
|
|
src: url("../fonts/FreeSansBold.ttf") format("truetype");
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2012-03-27 19:00:55 +02:00
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
.FreeSansBold {
|
|
|
|
font-family: FreeSansBoldFont;
|
2019-01-24 11:10:49 +01:00
|
|
|
}
|
2013-04-23 16:57:29 +02:00
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "smallfontFont";
|
|
|
|
src: url("../fonts/smallfont.ttf") format("truetype");
|
2014-06-03 18:59:55 +02:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
.smallfont {
|
|
|
|
font-family: smallfontFont;
|
2017-03-16 18:41:53 +01:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "unicodeFont";
|
|
|
|
src: url("../fonts/unicode.ttf") format("truetype");
|
2017-03-16 18:41:53 +01:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "roboto";
|
|
|
|
src: url("../../fonts/roboto.woff2") format("woff2");
|
2017-03-16 18:41:53 +01:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "opensans";
|
|
|
|
src: url("../../fonts/opensans.woff2") format("woff2");
|
2019-01-24 11:10:49 +01:00
|
|
|
}
|
2017-03-16 18:41:53 +01:00
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "lato";
|
|
|
|
src: url("../../fonts/lato.woff2") format("woff2");
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "leaguegothic";
|
|
|
|
src: url("../../fonts/leaguegothic.woff") format("woff");
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
2019-02-07 08:59:45 +01:00
|
|
|
.unicode {
|
|
|
|
font-family: unicodeFont;
|
2015-04-24 13:45:13 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - GLOBAL STYLES -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
div#page {
|
2019-02-07 08:59:45 +01:00
|
|
|
background: #fff;
|
|
|
|
background-image: none;
|
|
|
|
clear: both;
|
|
|
|
width: auto;
|
2015-04-24 13:45:13 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
|
|
|
|
body.pure {
|
2019-02-07 08:59:45 +01:00
|
|
|
background-color: #fff;
|
2015-04-24 13:45:13 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
|
|
|
|
div#container {
|
2019-02-07 08:59:45 +01:00
|
|
|
margin: 0 auto;
|
|
|
|
min-width: 960px;
|
|
|
|
text-align: left;
|
|
|
|
height: 100%;
|
|
|
|
background: #fff;
|
|
|
|
width: 100%;
|
2015-04-24 13:45:13 +02:00
|
|
|
}
|
2013-04-23 16:57:29 +02:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
div#main {
|
2019-02-07 08:59:45 +01:00
|
|
|
width: auto;
|
|
|
|
margin: 0px 0% 0px 0%;
|
|
|
|
float: left;
|
|
|
|
position: relative;
|
|
|
|
min-height: 850px;
|
|
|
|
margin-left: 60px;
|
|
|
|
max-width: 93%;
|
|
|
|
min-width: 93%;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
2017-03-16 18:41:53 +01:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
textarea.conf_editor {
|
2019-02-07 08:59:45 +01:00
|
|
|
padding: 5px;
|
|
|
|
width: 650px;
|
|
|
|
height: 350px;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
2015-04-24 13:45:13 +02:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
textarea.conf_error {
|
2019-02-07 08:59:45 +01:00
|
|
|
background-image: url(../../images/err.png);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: top right;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
input.button {
|
2019-02-07 08:59:45 +01:00
|
|
|
font-family: Arial, Sans-serif;
|
|
|
|
border: 4px solid #ccc;
|
|
|
|
background: #fff;
|
|
|
|
padding: 2px 3px;
|
|
|
|
margin: 10px 15px;
|
2019-01-24 11:10:49 +01:00
|
|
|
}
|
|
|
|
|
2007-05-18 14:56:05 +02:00
|
|
|
a.white_bold {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #eee;
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: bold;
|
2007-05-18 14:56:05 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
|
2007-05-18 14:56:05 +02:00
|
|
|
a.white {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #eee;
|
|
|
|
text-decoration: none;
|
2007-05-18 14:56:05 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
|
2007-02-23 10:08:26 +01:00
|
|
|
p.center {
|
2019-01-23 15:30:46 +01:00
|
|
|
text-align: center;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2013-04-23 16:57:29 +02:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
.img_help {
|
2019-02-07 08:59:45 +01:00
|
|
|
cursor: help;
|
2013-04-22 12:31:20 +02:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
#loading {
|
2019-02-07 08:59:45 +01:00
|
|
|
position: fixed;
|
|
|
|
width: 200px;
|
|
|
|
margin-left: 30%;
|
|
|
|
text-align: center;
|
|
|
|
top: 50%;
|
|
|
|
background-color: #999999;
|
|
|
|
padding: 20px;
|
2013-04-22 12:31:20 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
.tactical_set legend {
|
|
|
|
text-align: left;
|
|
|
|
color: #3f3f3f;
|
2019-01-24 11:10:49 +01:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
.tactical_set {
|
|
|
|
background: #fff;
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: auto;
|
2013-04-22 12:31:20 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
|
|
|
|
/* --- Botones --- */
|
|
|
|
input.sub {
|
2019-02-07 08:59:45 +01:00
|
|
|
font-weight: normal;
|
|
|
|
-moz-border-radius: 2px;
|
|
|
|
-webkit-border-radius: 2px;
|
|
|
|
border-radius: 2px;
|
|
|
|
font-size: 8pt;
|
|
|
|
background-color: #333 !important;
|
|
|
|
background-repeat: no-repeat !important;
|
|
|
|
background-position: 92% 3px !important;
|
|
|
|
color: white !important;
|
|
|
|
padding: 3px 3px 5px 12px;
|
|
|
|
border-color: #333;
|
2013-04-22 12:31:20 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
|
|
|
|
input.sub[disabled] {
|
2019-02-07 08:59:45 +01:00
|
|
|
color: #b4b4b4 !important;
|
|
|
|
background-color: #f3f3f3 !important;
|
|
|
|
border-color: #b6b6b6;
|
|
|
|
cursor: default;
|
2013-04-22 12:31:20 +02:00
|
|
|
}
|
2012-04-12 11:26:51 +02:00
|
|
|
|
2017-03-15 10:12:18 +01:00
|
|
|
/*
|
2019-01-24 11:10:49 +01:00
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - NO ACCESS PAGE - noaccess2.php -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2015-02-03 13:37:56 +01:00
|
|
|
#noaccess {
|
2019-01-23 15:30:46 +01:00
|
|
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
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;
|
2015-02-03 13:37:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#noaccess-text {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 12px;
|
|
|
|
text-align: justify;
|
|
|
|
padding-top: 25px;
|
|
|
|
padding-right: 50px;
|
|
|
|
float: right;
|
2015-02-03 13:37:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#noaccess-image {
|
2019-01-23 15:30:46 +01:00
|
|
|
position: relative;
|
|
|
|
left: 10px;
|
|
|
|
top: 10px;
|
|
|
|
float: left;
|
2015-02-03 13:37:56 +01:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*div#activity{
|
|
|
|
padding-top: 0px;
|
|
|
|
padding-bottom: 18px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2017-02-23 12:26:48 +01:00
|
|
|
div#activity table td > img {
|
2019-01-24 11:10:49 +01:00
|
|
|
vertical-align: middle;
|
2017-02-23 12:26:48 +01:00
|
|
|
}
|
2007-02-23 10:08:26 +01:00
|
|
|
div#noa {
|
2019-01-24 11:10:49 +01:00
|
|
|
float: right;
|
|
|
|
padding-right: 50px;
|
|
|
|
margin-top: 25px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2007-05-21 12:50:03 +02:00
|
|
|
div#db_f {
|
2019-01-24 11:10:49 +01:00
|
|
|
text-align: justify;
|
|
|
|
margin: auto;
|
|
|
|
padding: 0.5em;
|
|
|
|
width: 55em;
|
|
|
|
margin-top: 3em;
|
2007-05-21 12:50:03 +02:00
|
|
|
}
|
2007-02-23 10:08:26 +01:00
|
|
|
div#db_ftxt {
|
2019-01-24 11:10:49 +01:00
|
|
|
float: right;
|
|
|
|
padding-top: 10px;
|
|
|
|
}*/
|
2015-04-24 13:45:13 +02:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - HELP DIALOG - login_help_dialog.php and pandora_help.php -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2011-06-29 12:33:27 +02:00
|
|
|
div#main_help {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 100%;
|
2011-06-29 12:33:27 +02:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
div#main_help div.databox,
|
|
|
|
.license_databox {
|
|
|
|
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;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
div#main_help div.databox h1 {
|
|
|
|
padding-bottom: 0px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
font-weight: bold;
|
|
|
|
font-family: sans-serif, verdana;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
div#main_help div.databox h3,
|
|
|
|
div#main_help div.databox h2 {
|
|
|
|
color: #6eb432;
|
|
|
|
font-family: sans-serif, verdana;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
2014-03-04 15:49:56 +01:00
|
|
|
div#main_help div.databox h3 {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 12px;
|
2014-03-04 15:49:56 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
div#main_help a.footer,
|
|
|
|
div#main_help span {
|
|
|
|
color: #999;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
div#main_help div.databox hr {
|
|
|
|
width: 100%;
|
|
|
|
border: 0px;
|
|
|
|
height: 1px;
|
|
|
|
background-color: #222;
|
|
|
|
margin: 0px;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
div#main_help div.databox p {
|
|
|
|
line-height: 15px;
|
|
|
|
text-align: justify;
|
2014-06-03 18:59:55 +02:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - FOOTER -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2019-01-23 15:30:46 +01:00
|
|
|
a.footer,
|
|
|
|
a.footer span {
|
|
|
|
font-size: 9px;
|
|
|
|
color: white;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
div#foot {
|
2019-02-07 08:59:45 +01:00
|
|
|
font-size: 6pt !important;
|
|
|
|
border-top: solid 2px #222;
|
|
|
|
padding-top: 8px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
text-align: center;
|
|
|
|
background: #333333;
|
|
|
|
height: 30px;
|
|
|
|
clear: both;
|
|
|
|
width: auto;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - HEADER AND LEFT MENU STYLES -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2014-05-21 12:44:36 +02:00
|
|
|
div#menu_container {
|
2019-01-23 15:30:46 +01:00
|
|
|
-moz-border-top-right-radius: 6px;
|
|
|
|
-webkit-border-top-right-radius: 6px;
|
|
|
|
border-top-right-radius: 6px;
|
|
|
|
z-index: 1010;
|
|
|
|
width: 40px;
|
|
|
|
height: 100%;
|
2014-05-21 12:44:36 +02:00
|
|
|
}
|
|
|
|
|
2007-05-18 11:29:54 +02:00
|
|
|
div#menu {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 45px;
|
|
|
|
float: left;
|
|
|
|
z-index: 2000;
|
|
|
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 8pt;
|
|
|
|
width: 100%;
|
|
|
|
height: 60px;
|
|
|
|
padding-top: 0px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
border-bottom-style: solid;
|
|
|
|
border-bottom-width: 3px;
|
|
|
|
border-color: #82b92e;
|
|
|
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
z-index: 9999;
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
2014-08-04 18:50:36 +02:00
|
|
|
}
|
|
|
|
|
2007-02-23 10:08:26 +01:00
|
|
|
#ver {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-bottom: 25px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2012-03-27 19:00:55 +02:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*.databox_error {
|
2013-04-23 16:57:29 +02:00
|
|
|
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;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2013-04-23 16:57:29 +02:00
|
|
|
|
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;
|
2019-01-24 11:10:49 +01:00
|
|
|
}*/
|
2007-02-23 10:08:26 +01:00
|
|
|
input.datos {
|
2019-01-23 15:30:46 +01:00
|
|
|
background-color: #f5f5f5;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
/*input.datos_readonly {
|
2007-02-23 10:08:26 +01:00
|
|
|
background-color: #050505;
|
2019-01-24 11:10:49 +01:00
|
|
|
}*/
|
2019-01-23 15:30:46 +01:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - VISUAL MAPS -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2019-01-23 15:30:46 +01:00
|
|
|
input.vs_button_ghost {
|
|
|
|
background-color: transparent !important;
|
|
|
|
border: 1px solid #82b92e;
|
|
|
|
color: #82b92e !important;
|
|
|
|
text-align: center;
|
|
|
|
padding: 4px 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.next,
|
|
|
|
input.upd,
|
|
|
|
input.ok,
|
|
|
|
input.wand,
|
|
|
|
input.delete,
|
|
|
|
input.cog,
|
|
|
|
input.target,
|
|
|
|
input.search,
|
|
|
|
input.copy,
|
|
|
|
input.add,
|
|
|
|
input.graph,
|
|
|
|
input.percentile,
|
|
|
|
input.binary,
|
|
|
|
input.camera,
|
|
|
|
input.config,
|
|
|
|
input.cancel,
|
|
|
|
input.default,
|
|
|
|
input.filter,
|
|
|
|
input.pdf,
|
|
|
|
input.spinn {
|
|
|
|
padding-right: 30px;
|
|
|
|
height: 23px;
|
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
|
|
|
|
2014-06-03 18:59:55 +02:00
|
|
|
input.next {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
background-image: url(../../images/input_update.png) !important;
|
2007-04-19 20:50:07 +02:00
|
|
|
}
|
|
|
|
input.wand {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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] {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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] {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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] {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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] {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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] {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #fefefe url(../../images/auto_sla_graph.png) no-repeat center !important;
|
2017-07-12 11:51:00 +02:00
|
|
|
}
|
|
|
|
input.auto_sla_graph_min[disabled] {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #fefefe url(../../images/auto_sla_graph.disabled.png) no-repeat
|
|
|
|
center !important;
|
2017-07-12 11:51:00 +02:00
|
|
|
}
|
2017-10-18 11:40:40 +02:00
|
|
|
input.donut_graph_min {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #fefefe url(../../images/icono-quesito.png) no-repeat center !important;
|
2017-10-18 11:40:40 +02:00
|
|
|
}
|
|
|
|
input.donut_graph_min[disabled] {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #fefefe url(../../images/icono-quesito.disabled.png) no-repeat
|
|
|
|
center !important;
|
2017-10-18 11:40:40 +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.binary_min {
|
2019-01-23 15:30:46 +01: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] {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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] {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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] {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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] {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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] {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #fefefe url(../../images/clock-tab.png) no-repeat center !important;
|
2017-12-01 12:14:56 +01:00
|
|
|
}
|
|
|
|
input.clock_min[disabled] {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #fefefe url(../../images/clock-tab.disabled.png) no-repeat center !important;
|
2017-12-01 12:14:56 +01:00
|
|
|
}
|
2014-11-21 10:42:14 +01:00
|
|
|
input.box_item {
|
2019-01-23 15:30:46 +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] {
|
2019-01-23 15:30:46 +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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #fefefe url(../../images/line_item.png) no-repeat center !important;
|
2014-11-24 16:40:59 +01:00
|
|
|
}
|
|
|
|
input.line_item[disabled] {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #fefefe url(../../images/line_item.disabled.png) no-repeat center !important;
|
2014-11-24 16:40:59 +01:00
|
|
|
}
|
2014-11-19 16:29:36 +01:00
|
|
|
input.copy_item {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #fefefe url(../../images/copy_visualmap.png) no-repeat center !important;
|
2014-11-19 16:29:36 +01:00
|
|
|
}
|
|
|
|
input.copy_item[disabled] {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #fefefe url(../../images/copy_visualmap.disabled.png) no-repeat
|
|
|
|
center !important;
|
2014-11-19 16:29:36 +01:00
|
|
|
}
|
2012-01-30 18:19:40 +01:00
|
|
|
input.grid_min {
|
2019-01-23 15:30:46 +01: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] {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #fefefe url(../../images/file.png) no-repeat center !important;
|
2012-02-21 15:05:57 +01:00
|
|
|
}
|
|
|
|
input.save_min[disabled] {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01: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] {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #fefefe url(../../images/group_green.png) no-repeat center !important;
|
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[disabled] {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #fefefe url(../../images/group_green.disabled.png) no-repeat
|
|
|
|
center !important;
|
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
|
|
|
}
|
2018-12-10 09:19:26 +01:00
|
|
|
input.color_cloud_min {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #fefefe url(../../images/color_cloud_item.png) no-repeat center !important;
|
2018-12-10 09:19:26 +01:00
|
|
|
}
|
|
|
|
input.color_cloud_min[disabled] {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #fefefe url(../../images/color_cloud_item.disabled.png) no-repeat
|
|
|
|
center !important;
|
2018-12-10 09:19:26 +01: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
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
div#cont {
|
2019-01-23 15:30:46 +01:00
|
|
|
position: fixed;
|
|
|
|
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
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*.termframe{
|
2015-04-01 12:09:23 +02:00
|
|
|
background-color: #80BA27 !important;
|
2019-01-24 11:10:49 +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
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*tr.datos, tr.datost, tr.datosb , tr.datos_id,
|
2015-04-09 15:04:23 +02:00
|
|
|
tr.datosf9 {
|
2015-03-26 13:12:48 +01:00
|
|
|
#background-color: #eaeaea;
|
2018-05-23 17:55:07 +02:00
|
|
|
}
|
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;
|
2014-06-02 18:57:20 +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;
|
2019-01-24 11:10:49 +01:00
|
|
|
}*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - REPORTS -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
.agent_reporting {
|
2019-02-07 08:59:45 +01:00
|
|
|
margin: 5px;
|
|
|
|
padding: 5px;
|
2019-01-23 15:30:46 +01:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
.report_table,
|
|
|
|
.agent_reporting {
|
|
|
|
border: #ccc outset 3px;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
td.datos3,
|
|
|
|
td.datos3 * {
|
|
|
|
background-color: #666;
|
|
|
|
color: white !important;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
td.datos4,
|
|
|
|
td.datos4 * {
|
|
|
|
/*Add !important because in php the function html_print_table write style in cell and this is style head.*/
|
|
|
|
text-align: center !important;
|
|
|
|
background-color: #666;
|
|
|
|
color: white !important;
|
2009-06-24 18:04:19 +02:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*td.datos_id {
|
2007-02-23 10:08:26 +01:00
|
|
|
color: #1a313a;
|
2019-01-24 11:10:49 +01:00
|
|
|
}*/
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/* user list php */
|
2012-11-03 17:41:26 +01:00
|
|
|
tr.disabled_row_user * {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: grey;
|
2012-11-03 17:41:26 +01:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/* global syles */
|
2019-02-07 08:59:45 +01:00
|
|
|
.bg {
|
|
|
|
/* op menu */
|
|
|
|
background: #82b92e;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2012-11-03 17:41:26 +01:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.bg {
|
|
|
|
/* op menu */
|
|
|
|
background: #82b92e;
|
2019-01-25 09:54:53 +01:00
|
|
|
height: 20px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2012-11-03 17:41:26 +01:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.bg2 {
|
|
|
|
/* main page */
|
|
|
|
background-color: #0a160c;
|
2007-02-27 20:03:56 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.bg3 {
|
|
|
|
/* godmode */
|
|
|
|
background: #666666;
|
2007-02-27 20:03:56 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.bg4 {
|
|
|
|
/* links */
|
|
|
|
background-color: #989898;
|
2007-02-27 20:03:56 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.bg,
|
|
|
|
.bg2,
|
|
|
|
.bg3,
|
|
|
|
.bg4 {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.bg2,
|
|
|
|
.bg3,
|
|
|
|
.bg4 {
|
|
|
|
height: 18px;
|
|
|
|
}
|
|
|
|
.f10,
|
|
|
|
#ip {
|
|
|
|
font-size: 7pt;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.f9,
|
|
|
|
.f9i,
|
|
|
|
.f9b,
|
|
|
|
.datos_greyf9,
|
|
|
|
.datos_bluef9,
|
|
|
|
.datos_greenf9,
|
|
|
|
.datos_redf9,
|
|
|
|
.datos_yellowf9,
|
|
|
|
td.f9,
|
|
|
|
td.f9i,
|
|
|
|
td.datosf9,
|
|
|
|
td.datos2f9 {
|
|
|
|
font-size: 6.5pt;
|
|
|
|
}
|
|
|
|
.f9i,
|
|
|
|
.redi {
|
|
|
|
font-style: italic;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
.tit {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding: 6px 0px;
|
|
|
|
height: 14px;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.tit,
|
|
|
|
.titb {
|
|
|
|
font-weight: bold;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2013-05-23 17:42:32 +02:00
|
|
|
|
|
|
|
.suc * {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #5a8629;
|
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
|
|
|
}
|
2013-05-23 17:42:32 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.info * {
|
|
|
|
color: #006f9d;
|
2013-05-20 10:42:02 +02:00
|
|
|
}
|
2013-05-23 17:42:32 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.error * {
|
|
|
|
color: #f85858;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2013-05-23 17:42:32 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.warning * {
|
|
|
|
color: #fad403;
|
2015-04-21 17:26:20 +02:00
|
|
|
}
|
|
|
|
|
2009-03-05 13:52:59 +01:00
|
|
|
.help {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/help.png) no-repeat;
|
2009-03-05 13:52:59 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.red,
|
|
|
|
.redb,
|
|
|
|
.redi,
|
|
|
|
.error {
|
|
|
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-left: 30px;
|
|
|
|
border-bottom: 1px solid #708090;
|
|
|
|
width: 100%;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2010-08-04 13:08:16 +02:00
|
|
|
.orange {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #fd7304;
|
2010-08-04 13:08:16 +02:00
|
|
|
}
|
2010-05-24 18:17:21 +02:00
|
|
|
.green {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #5a8629;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2010-05-24 18:17:21 +02:00
|
|
|
.yellow {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #f3c500;
|
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
|
|
|
.greenb {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #00aa00;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
.grey {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #808080;
|
|
|
|
font-weight: bold;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2014-12-01 16:37:40 +01:00
|
|
|
.blue {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #5ab7e5;
|
|
|
|
font-weight: bold;
|
2014-12-01 16:37:40 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.redb,
|
|
|
|
.greenb,
|
|
|
|
td.datos_id,
|
2019-01-25 09:54:53 +01:00
|
|
|
td.datos2_id {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-weight: bold;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
.p10 {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding-top: 1px;
|
|
|
|
padding-bottom: 0px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
.p21 {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding-top: 2px;
|
|
|
|
padding-bottom: 1px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
.w120 {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 120px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.w130,
|
|
|
|
#table-agent-configuration select {
|
|
|
|
width: 130px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2007-04-18 23:45:03 +02:00
|
|
|
.w135 {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 135px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.w155,
|
|
|
|
#table_layout_data select {
|
|
|
|
width: 155px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.top,
|
|
|
|
.top_red,
|
|
|
|
.bgt,
|
|
|
|
td.datost,
|
|
|
|
td.datos2t {
|
|
|
|
vertical-align: top;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2007-03-12 18:58:52 +01:00
|
|
|
.top_red {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #ff0000;
|
2007-03-12 18:58:52 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.bot,
|
|
|
|
.titb,
|
|
|
|
td.datosb {
|
|
|
|
vertical-align: bottom;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
.msg {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-top: 15px;
|
|
|
|
text-align: justify;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
ul.mn {
|
2019-01-23 15:30:46 +01:00
|
|
|
list-style: none;
|
|
|
|
padding: 0px 0px 0px 0px;
|
|
|
|
margin: 0px 0px 0px 0px;
|
|
|
|
line-height: 15px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
.gr {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 10pt;
|
|
|
|
font-weight: bold;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
a.mn,
|
|
|
|
.gr {
|
|
|
|
font-family: Arial, Verdana, sans-serif, Helvetica;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
div.nf {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/info.png) no-repeat scroll 0 50% transparent;
|
|
|
|
margin-left: 7px;
|
|
|
|
padding: 8px 1px 6px 25px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2007-02-27 20:03:56 +01:00
|
|
|
div.title_line {
|
2019-01-23 15:30:46 +01:00
|
|
|
background-color: #4e682c;
|
|
|
|
height: 5px;
|
|
|
|
width: 762px;
|
2007-02-27 20:03:56 +01:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2014-05-20 13:27:03 +02:00
|
|
|
.alpha50 {
|
2019-01-23 15:30:46 +01:00
|
|
|
filter: alpha(opacity=50);
|
|
|
|
-moz-opacity: 0.5;
|
|
|
|
opacity: 0.5;
|
|
|
|
-khtml-opacity: 0.5;
|
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
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - RIGHT MENU SECTION -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2019-01-23 15:30:46 +01:00
|
|
|
#menu_tab_frame,
|
|
|
|
#menu_tab_frame_view {
|
|
|
|
display: block !important;
|
|
|
|
border-bottom: 1px solid #80ba27;
|
2019-02-07 08:59:45 +01:00
|
|
|
max-height: 31px;
|
|
|
|
min-height: 31px;
|
|
|
|
width: 100%;
|
|
|
|
padding-right: 0px;
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-left: 0px !important;
|
2019-01-25 09:54:53 +01:00
|
|
|
margin-bottom: 20px;
|
|
|
|
height: 31px;
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin: 0px 0px 0px 0px !important;
|
2008-04-03 17:43:34 +02:00
|
|
|
}
|
2013-04-10 09:57:54 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
#menu_tab .mn,
|
|
|
|
#menu_tab ul,
|
|
|
|
#menu_tab .mn ul {
|
|
|
|
padding: 0px;
|
|
|
|
list-style: none;
|
|
|
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
float: right;
|
|
|
|
position: relative;
|
|
|
|
margin: 0px 0px 0px 0px;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
2013-04-10 09:57:54 +02:00
|
|
|
|
2010-07-26 13:08:59 +02:00
|
|
|
#menu_tab li.separator_view {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding: 4px;
|
2010-07-26 13:08:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#menu_tab li.separator {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding: 4px;
|
2010-07-26 13:08:59 +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
|
|
|
#menu_tab li.nomn_high a {
|
2019-01-23 15:30:46 +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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
2007-02-27 20:03:56 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
#menu_tab li.nomn:hover a,
|
|
|
|
#menu_tab li:hover ul a:hover {
|
|
|
|
color: #fff;
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
min-width: 30px;
|
|
|
|
height: 28px;
|
2015-04-07 09:50:46 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
#menu_tab li.nomn_high {
|
2019-02-07 08:59:45 +01:00
|
|
|
min-width: 30px;
|
|
|
|
height: 28px;
|
2019-01-24 11:10:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* --- Submenu --- */
|
|
|
|
ul.subsubmenu {
|
2019-02-07 08:59:45 +01:00
|
|
|
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;
|
2019-01-24 11:10:49 +01:00
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
background: #ececec !important;
|
2019-01-24 11:10:49 +01:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
ul.subsubmenu li {
|
|
|
|
background-color: #ececec;
|
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 14px;
|
|
|
|
border-color: #e2e2e2;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
2019-01-24 11:10:49 +01:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
ul.subsubmenu li a {
|
|
|
|
padding: 0px 10px 5px;
|
2019-01-24 11:10:49 +01:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
.subsubmenu {
|
|
|
|
position: absolute;
|
|
|
|
float: right;
|
|
|
|
z-index: 9999;
|
|
|
|
display: none;
|
|
|
|
margin-top: 5px !important ;
|
|
|
|
left: 0px !important;
|
2019-01-24 11:10:49 +01:00
|
|
|
}
|
2019-02-07 08:59:45 +01:00
|
|
|
.subsubmenu li {
|
|
|
|
margin-top: 0px !important ;
|
2007-02-27 20:03:56 +01:00
|
|
|
}
|
2013-04-17 10:21:22 +02:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
div#agent_wizard_subtabs {
|
2019-02-07 08:59:45 +01:00
|
|
|
position: absolute;
|
|
|
|
margin-left: 0px;
|
|
|
|
display: none;
|
|
|
|
padding-bottom: 3px;
|
|
|
|
z-index: 1000;
|
2015-04-07 09:50:46 +02:00
|
|
|
}
|
2013-04-17 10:21:22 +02:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
.agent_wizard_tab:hover {
|
2019-02-07 08:59:45 +01:00
|
|
|
cursor: default;
|
2013-04-17 10:21:22 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - SECTION TITLE LEFT (green background) -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2007-03-12 18:58:52 +01:00
|
|
|
/* TAB TITLE */
|
2013-04-10 09:57:54 +02:00
|
|
|
#menu_tab_left {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-left: 0px !important;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
#menu_tab_left .mn,
|
|
|
|
#menu_tab_left ul,
|
|
|
|
#menu_tab_left .mn ul {
|
|
|
|
background-color: #000;
|
|
|
|
color: #fff;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 0px 0px 0px 0px;
|
|
|
|
list-style: none;
|
|
|
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
float: left;
|
|
|
|
position: relative;
|
|
|
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
2007-03-12 18:58:52 +01:00
|
|
|
}
|
2007-05-27 04:55:55 +02:00
|
|
|
#menu_tab_left li.view a {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #fff;
|
|
|
|
font-weight: bold;
|
|
|
|
font-weight: 100;
|
|
|
|
line-height: 18px;
|
|
|
|
display: none;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2015-04-07 09:50:46 +02:00
|
|
|
#menu_tab_left li.view {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #82b92e;
|
|
|
|
max-width: 60%;
|
|
|
|
min-width: 30%;
|
|
|
|
padding: 5px 5px 0px;
|
|
|
|
text-align: center;
|
|
|
|
-moz-border-top-right-radius: 3px;
|
|
|
|
-webkit-border-top-right-radius: 3px;
|
|
|
|
border-top-right-radius: 3px;
|
|
|
|
|
|
|
|
-moz-border-top-left-radius: 3px;
|
|
|
|
-webkit-border-top-left-radius: 3px;
|
|
|
|
border-top-left-radius: 3px;
|
|
|
|
margin-left: 0px !important;
|
|
|
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2013-05-23 17:42:32 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
#menu_tab_left li a,
|
|
|
|
#menu_tab_left li span {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 100%;
|
|
|
|
line-height: 20px;
|
|
|
|
letter-spacing: 0px;
|
|
|
|
font-family: verdana, sans-serif;
|
|
|
|
font-weight: bold;
|
2016-10-27 16:08:19 +02:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
2007-02-23 10:08:26 +01:00
|
|
|
span.users {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/group.png) no-repeat;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
span.agents {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/bricks.png) no-repeat;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
span.data {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/data.png) no-repeat;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
span.alerts {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/bell.png) no-repeat;
|
2007-02-23 10:08:26 +01:00
|
|
|
}
|
|
|
|
span.time {
|
2019-01-23 15:30:46 +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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/network.png) no-repeat;
|
2007-04-29 15:19:45 +02:00
|
|
|
}
|
|
|
|
span.master {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +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 {
|
2019-01-23 15:30:46 +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 {
|
2019-01-23 15:30:46 +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 {
|
2019-01-23 15:30:46 +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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/snmp.png) no-repeat;
|
2007-04-29 15:19:45 +02:00
|
|
|
}
|
|
|
|
span.binary {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/binary.png) no-repeat;
|
2007-04-29 15:19:45 +02:00
|
|
|
}
|
|
|
|
span.recon {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/recon.png) no-repeat;
|
2007-04-29 15:19:45 +02:00
|
|
|
}
|
2007-06-27 19:45:42 +02:00
|
|
|
span.rmess {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/email_open.png) no-repeat;
|
2007-06-27 19:45:42 +02:00
|
|
|
}
|
|
|
|
span.nrmess {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/email.png) no-repeat;
|
2007-06-27 19:45:42 +02:00
|
|
|
}
|
2011-02-21 19:01:14 +01:00
|
|
|
span.recon_server {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/recon.png) no-repeat;
|
2011-02-21 19:01:14 +01:00
|
|
|
}
|
|
|
|
span.wmi_server {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/wmi.png) no-repeat;
|
2011-02-21 19:01:14 +01:00
|
|
|
}
|
|
|
|
span.export_server {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/server_export.png) no-repeat;
|
2011-02-21 19:01:14 +01:00
|
|
|
}
|
|
|
|
span.inventory_server {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/page_white_text.png) no-repeat;
|
2011-02-21 19:01:14 +01:00
|
|
|
}
|
|
|
|
span.web_server {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/world.png) no-repeat;
|
2011-02-21 19:01:14 +01:00
|
|
|
}
|
2019-01-24 11:10:49 +01: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
|
|
|
/* 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 */
|
2019-01-24 11:10:49 +01: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;
|
2019-01-24 11:10:49 +01:00
|
|
|
}*/
|
|
|
|
|
2007-04-18 11:58:26 +02:00
|
|
|
/* New styles for data box */
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - TABLES -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox,
|
|
|
|
.databox_color,
|
|
|
|
.databox_frame {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-left: 0px;
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
-moz-border-radius: 4px;
|
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
border-radius: 4px;
|
2015-04-15 09:45:13 +02:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox_color {
|
|
|
|
padding-top: 5px;
|
2019-01-25 09:54:53 +01:00
|
|
|
background-color: #fafafa;
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
background-color: #f9faf9;
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox > tbody > tr > td {
|
|
|
|
-moz-border-radius: 0px;
|
|
|
|
-webkit-border-radius: 0px;
|
|
|
|
border-radius: 0px;
|
|
|
|
border: 0px none #e2e2e2;
|
2019-01-25 09:54:53 +01:00
|
|
|
padding-left: 9px;
|
|
|
|
padding-right: 9px;
|
|
|
|
padding-top: 7px;
|
|
|
|
padding-bottom: 7px;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox > thead > tr > th,
|
|
|
|
.databox > tbody > tr > th,
|
|
|
|
.databox > thead > tr > th a {
|
|
|
|
padding: 9px 7px;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #fff;
|
2013-05-23 17:42:32 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox > th * {
|
|
|
|
color: #fff;
|
2013-05-20 18:43:28 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox > th > input,
|
|
|
|
.databox > th > textarea,
|
|
|
|
.databox > th > select,
|
|
|
|
.databox > th > select > option {
|
|
|
|
color: #222 !important;
|
2014-01-21 17:42:44 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.data > tbody > tr > td:first-child {
|
|
|
|
border-left: 1px solid #e2e2e2;
|
2018-09-20 11:50:47 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.data > tbody > tr:last-child > td:first-child {
|
|
|
|
border-bottom-left-radius: 4px;
|
2018-09-20 11:50:47 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.data > tbody > tr > td:last-child {
|
|
|
|
border-right: 1px solid #e2e2e2;
|
2018-09-20 11:50:47 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.data > tbody > tr:last-child > td:last-child {
|
|
|
|
border-bottom-right-radius: 4px;
|
2018-09-20 11:50:47 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.data > thead > tr:first-child > th:first-child {
|
|
|
|
border-left: 1px solid #e2e2e2;
|
|
|
|
border-top-left-radius: 4px;
|
|
|
|
border-color: #373737;
|
2018-09-20 11:50:47 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.data > thead > tr:first-child > th:last-child {
|
|
|
|
border-right: 1px solid #e2e2e2;
|
|
|
|
border-top-right-radius: 4px;
|
|
|
|
border-color: #373737;
|
2018-09-20 11:50:47 +02:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.data {
|
|
|
|
border: none;
|
2018-09-20 11:50:47 +02:00
|
|
|
}
|
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
.tabletitle {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #333;
|
2007-04-18 11:58:26 +02:00
|
|
|
}
|
2013-04-10 09:57:54 +02:00
|
|
|
|
2012-12-10 01:05:09 +01:00
|
|
|
/* For use in Netflow */
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
2012-12-10 01:05:09 +01:00
|
|
|
table.databox_grid {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin: 25px;
|
2012-12-10 01:05:09 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
table.databox_grid > th {
|
|
|
|
font-size: 12px;
|
2012-12-10 01:05:09 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
table.databox_grid > td {
|
|
|
|
padding: 6px;
|
|
|
|
margin: 4px;
|
|
|
|
border-bottom: 1px solid #acacac;
|
|
|
|
border-right: 1px solid #acacac;
|
2012-12-10 01:05:09 +01:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
*/
|
2012-12-10 01:05:09 +01:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/* events */
|
2019-01-23 15:30:46 +01:00
|
|
|
table.alternate tr:nth-child(odd) td {
|
|
|
|
background-color: #ffffff;
|
2013-04-23 16:57:29 +02:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
table.alternate tr:nth-child(even) td {
|
|
|
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding: 4px 4px 4px 10px;
|
|
|
|
-moz-border-radius: 6px !important;
|
|
|
|
-webkit-border-radius: 6px !important;
|
|
|
|
border-radius: 6px !important;
|
2012-03-30 16:42:12 +02:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*#head_l {
|
2007-05-18 11:29:54 +02:00
|
|
|
float: left;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
#head_r {
|
2019-01-23 15:30:46 +01:00
|
|
|
float: right;
|
|
|
|
text-align: right;
|
|
|
|
margin-right: 10px;
|
|
|
|
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;
|
2019-01-24 11:10:49 +01:00
|
|
|
}*/
|
|
|
|
/*span#logo_text1 {
|
2007-05-18 11:29:54 +02:00
|
|
|
font: bolder 3em Arial, Sans-serif;
|
|
|
|
letter-spacing: -2px;
|
|
|
|
color: #eee;
|
|
|
|
}
|
|
|
|
span#logo_text2 {
|
2019-01-23 15:30:46 +01:00
|
|
|
font: 3em Arial, Sans-serif;
|
|
|
|
letter-spacing: -2px;
|
|
|
|
color: #aaa;
|
2007-05-18 11:29:54 +02:00
|
|
|
}
|
2009-05-13 19:00:58 +02:00
|
|
|
|
|
|
|
div#logo_text3 {
|
2019-01-23 15:30:46 +01:00
|
|
|
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;
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
border-bottom: 0px;
|
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
|
|
|
}
|
|
|
|
.bt0 {
|
|
|
|
border-top: 0px;
|
2019-01-24 11:10:49 +01: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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
text-align: right;
|
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
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
/*#table-add-item select, #table-add-sla select {
|
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
|
|
|
width: 180px;
|
2019-01-24 11:10:49 +01:00
|
|
|
}*/
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
background-color: #fefefe;
|
|
|
|
text-align: left;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
margin-top: 30px;
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 10px;
|
|
|
|
height: 1000px;
|
|
|
|
width: 98%;
|
|
|
|
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
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
/*#table-agent-configuration radio {
|
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
|
|
|
margin-right: 40px;
|
2019-01-24 11:10:49 +01: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
|
|
|
.ui-draggable {
|
2019-01-23 15:30:46 +01:00
|
|
|
cursor: move;
|
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
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
/*#layout_trash_drop {
|
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
|
|
|
float: right;
|
|
|
|
width: 300px;
|
|
|
|
height: 180px;
|
|
|
|
background: #fff url("../../images/trash.png") no-repeat bottom left;
|
|
|
|
}
|
|
|
|
#layout_trash_drop div {
|
2019-01-23 15:30:46 +01:00
|
|
|
display: block;
|
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
|
|
|
}
|
|
|
|
#layout_editor_drop {
|
|
|
|
float: left;
|
|
|
|
width: 300px;
|
2019-01-24 11:10:49 +01:00
|
|
|
}*/
|
|
|
|
|
2011-06-28 15:31:52 +02:00
|
|
|
/* IE 7 Hack */
|
|
|
|
#editor {
|
2019-01-23 15:30:46 +01:00
|
|
|
*margin-top: 10px !important;
|
2011-06-28 15:31:52 +02:00
|
|
|
}
|
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 {
|
2019-01-23 15:30:46 +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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
text-decoration: none;
|
|
|
|
font: bold 1.5em Arial, Sans-serif;
|
2013-02-27 18:11:42 +01:00
|
|
|
}
|
|
|
|
|
2008-08-05 12:47:40 +02:00
|
|
|
.notify {
|
2019-01-23 15:30:46 +01:00
|
|
|
background-color: #f7ffa5;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 8px;
|
|
|
|
margin: 0px 0px 0px 0px !important;
|
|
|
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #003a3a;
|
|
|
|
text-decoration: underline;
|
2009-09-02 19:44:41 +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
|
|
|
.listing {
|
2019-01-23 15:30:46 +01:00
|
|
|
border-collapse: collapse;
|
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 td {
|
2019-01-23 15:30:46 +01:00
|
|
|
border-bottom: 1px solid #cccccc;
|
|
|
|
border-top: 1px solid #cccccc;
|
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
|
|
|
}
|
|
|
|
span.actions {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-left: 30px;
|
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
|
|
|
}
|
2011-06-28 15:31:52 +02:00
|
|
|
.actions {
|
2019-01-23 15:30:46 +01:00
|
|
|
min-width: 200px !important;
|
2011-06-28 15:31:52 +02:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
select#template,
|
|
|
|
select#action {
|
|
|
|
width: 250px;
|
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
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
/*#label-checkbox-matches_value,
|
2009-02-16 13:18:42 +01:00
|
|
|
#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;
|
2019-01-24 11:10:49 +01:00
|
|
|
}*/
|
|
|
|
|
|
|
|
/* Modules */
|
2019-01-23 15:30:46 +01:00
|
|
|
table#simple {
|
|
|
|
padding: 30px;
|
2016-10-20 16:26:05 +02:00
|
|
|
}
|
2009-02-11 17:55:04 +01:00
|
|
|
table#simple select#id_module_type,
|
|
|
|
table#alert_search select#id_agent,
|
2009-05-22 11:08:55 +02:00
|
|
|
table#alert_search select#id_group,
|
|
|
|
table#network_component select#type {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 200px;
|
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 select#select_snmp_oid,
|
2009-05-22 11:08:55 +02:00
|
|
|
table#simple select#id_plugin,
|
|
|
|
table#network_component select#id_plugin {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 270px;
|
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
|
|
|
}
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 50%;
|
|
|
|
display: block;
|
2009-06-09 16:29:03 +02:00
|
|
|
}
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 100%;
|
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
|
|
|
}
|
2009-02-17 13:17:10 +01:00
|
|
|
table#simple select#network_component_group,
|
|
|
|
table#simple select#network_component {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 90%;
|
2009-02-17 13:17:10 +01:00
|
|
|
}
|
|
|
|
table#simple span#component_group,
|
|
|
|
table#simple span#component {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 45%;
|
|
|
|
font-style: italic;
|
2009-02-17 13:17:10 +01:00
|
|
|
}
|
2009-06-09 16:29:03 +02:00
|
|
|
table#simple label {
|
2019-01-23 15:30:46 +01:00
|
|
|
display: inline;
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: italic;
|
2009-06-09 16:29:03 +02:00
|
|
|
}
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
cursor: pointer;
|
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
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
table#agent_list tr,
|
|
|
|
table.alert_list tr {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
.toggle {
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
.toggle td {
|
|
|
|
border-left: 1px solid #d3d3d3;
|
2009-02-04 17:07:43 +01:00
|
|
|
}
|
2011-07-06 13:57:27 +02:00
|
|
|
|
2009-02-11 17:55:04 +01:00
|
|
|
ul.actions_list {
|
2019-01-23 15:30:46 +01:00
|
|
|
list-style-image: url(../../images/arrow.png);
|
|
|
|
list-style-position: inside;
|
|
|
|
margin-top: 0;
|
2009-02-11 17:55:04 +01:00
|
|
|
}
|
|
|
|
div.loading {
|
2019-01-23 15:30:46 +01:00
|
|
|
background-color: #fff1a8;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
padding: 5px;
|
|
|
|
text-align: center;
|
|
|
|
font-style: italic;
|
|
|
|
width: 95%;
|
2009-02-11 17:55:04 +01:00
|
|
|
}
|
|
|
|
div.loading img {
|
2019-01-23 15:30:46 +01:00
|
|
|
float: right;
|
2009-02-11 17:55:04 +01:00
|
|
|
}
|
|
|
|
/* Tablesorter jQuery pager */
|
|
|
|
div.pager {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-left: 10px;
|
|
|
|
margin-top: 5px;
|
2009-02-11 17:55:04 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
div.pager img {
|
|
|
|
position: relative;
|
|
|
|
top: 4px;
|
|
|
|
padding-left: 5px;
|
2009-02-11 17:55:04 +01:00
|
|
|
}
|
|
|
|
div.pager input {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding-left: 5px;
|
2009-02-11 17:55:04 +01:00
|
|
|
}
|
|
|
|
.pagedisplay {
|
2019-01-23 15:30:46 +01:00
|
|
|
border: 0;
|
|
|
|
width: 35px;
|
2009-02-11 17:55:04 +01:00
|
|
|
}
|
|
|
|
/* Steps style */
|
|
|
|
ol.steps {
|
2019-01-25 09:54:53 +01:00
|
|
|
margin-bottom: 70px;
|
2019-01-23 15:30:46 +01:00
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
list-style-position: outside;
|
2009-02-11 17:55:04 +01:00
|
|
|
}
|
|
|
|
ol.steps li {
|
2019-01-23 15:30:46 +01:00
|
|
|
float: left;
|
|
|
|
background-color: #efefef;
|
|
|
|
padding: 5px;
|
|
|
|
margin-left: 5px;
|
|
|
|
width: 150px;
|
2009-02-11 17:55:04 +01:00
|
|
|
}
|
|
|
|
ol.steps li a {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #111;
|
2009-02-11 17:55:04 +01:00
|
|
|
}
|
|
|
|
ol.steps li.visited a {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #999;
|
2009-02-11 17:55:04 +01:00
|
|
|
}
|
|
|
|
ol.steps li span {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-weight: normal;
|
|
|
|
display: block;
|
|
|
|
color: #777;
|
2009-02-11 17:55:04 +01:00
|
|
|
}
|
|
|
|
ol.steps li.visited span {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #999;
|
2009-02-11 17:55:04 +01:00
|
|
|
}
|
|
|
|
ol.steps li.current {
|
2019-01-23 15:30:46 +01:00
|
|
|
border-left: 5px solid #778866;
|
|
|
|
margin-left: 0;
|
|
|
|
font-weight: bold;
|
|
|
|
background-color: #e9f3d2;
|
2009-02-11 17:55:04 +01:00
|
|
|
}
|
|
|
|
ol.steps li.visited {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #999 !important;
|
2009-02-11 17:55:04 +01:00
|
|
|
}
|
|
|
|
|
2012-04-18 10:08:04 +02:00
|
|
|
fieldset .databox {
|
2019-01-23 15:30:46 +01:00
|
|
|
border: 0px solid;
|
2012-04-18 10:08:04 +02:00
|
|
|
}
|
|
|
|
|
2013-05-23 17:42:32 +02:00
|
|
|
fieldset.databox {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding: 14px !important;
|
2013-05-23 17:42:32 +02:00
|
|
|
}
|
|
|
|
|
2009-02-18 13:29:30 +01:00
|
|
|
fieldset legend span,
|
|
|
|
span#latest_value {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-style: italic;
|
2009-02-18 13:29:30 +01:00
|
|
|
}
|
|
|
|
span#latest_value span#value {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-style: normal;
|
2009-02-16 13:18:42 +01:00
|
|
|
}
|
2009-02-16 17:23:30 +01:00
|
|
|
form#filter_form {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-bottom: 15px;
|
2009-02-16 17:23:30 +01:00
|
|
|
}
|
2009-02-18 13:29:30 +01:00
|
|
|
ul.action_list {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin: 0;
|
|
|
|
list-style: none inside circle;
|
2009-02-18 13:29:30 +01:00
|
|
|
}
|
|
|
|
ul.action_list li div {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-left: 15px;
|
2009-02-18 13:29:30 +01:00
|
|
|
}
|
2009-03-16 12:06:00 +01:00
|
|
|
span.action_name {
|
2019-01-23 15:30:46 +01:00
|
|
|
float: none;
|
2009-03-16 12:06:00 +01:00
|
|
|
}
|
2009-02-18 13:29:30 +01:00
|
|
|
div.actions_container {
|
2019-01-23 15:30:46 +01:00
|
|
|
overflow: auto;
|
|
|
|
width: 100%;
|
|
|
|
max-height: 200px;
|
2009-02-18 13:29:30 +01:00
|
|
|
}
|
|
|
|
div.actions_container label {
|
2019-01-23 15:30:46 +01:00
|
|
|
display: inline;
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: italic;
|
2009-02-18 13:29:30 +01:00
|
|
|
}
|
2009-03-16 12:06:00 +01:00
|
|
|
a.add_action {
|
2019-01-23 15:30:46 +01:00
|
|
|
clear: both;
|
|
|
|
display: block;
|
2009-03-16 12:06:00 +01:00
|
|
|
}
|
2009-02-25 13:24:06 +01:00
|
|
|
|
2009-02-12 22:04:02 +01:00
|
|
|
/* timeEntry styles */
|
|
|
|
.timeEntry_control {
|
2019-01-23 15:30:46 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
margin-left: 2px;
|
2009-02-12 22:04:02 +01:00
|
|
|
}
|
2019-01-25 09:54:53 +01:00
|
|
|
|
2009-04-01 10:04:49 +02:00
|
|
|
div#event_control {
|
2019-01-23 15:30:46 +01:00
|
|
|
clear: right;
|
2009-04-01 10:04:49 +02:00
|
|
|
}
|
2009-05-13 19:00:58 +02:00
|
|
|
|
2009-06-09 13:25:47 +02:00
|
|
|
/* Autocomplete styles */
|
|
|
|
.ac_results {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding: 0px;
|
|
|
|
border: 1px solid black;
|
|
|
|
background-color: white;
|
|
|
|
overflow: hidden;
|
|
|
|
z-index: 99999;
|
2009-06-09 13:25:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.ac_results ul {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 100%;
|
|
|
|
list-style-position: outside;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
text-align: left;
|
2009-06-09 13:25:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.ac_results li {
|
2019-01-23 15:30:46 +01:00
|
|
|
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
|
|
|
|
*/
|
2019-01-23 15:30:46 +01:00
|
|
|
/*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
|
|
|
|
*/
|
2019-01-23 15:30:46 +01:00
|
|
|
line-height: 16px;
|
2009-06-09 13:25:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.ac_loading {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: white url("../images/loading.gif") right center no-repeat;
|
2009-06-09 13:25:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.ac_over {
|
2019-01-23 15:30:46 +01:00
|
|
|
background-color: #efefef;
|
2009-06-09 13:25:47 +02:00
|
|
|
}
|
|
|
|
span.ac_extra_field,
|
|
|
|
span.ac_extra_field strong {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-style: italic;
|
|
|
|
font-size: 9px;
|
2009-06-09 13:25:47 +02:00
|
|
|
}
|
|
|
|
|
2009-05-13 19:00:58 +02:00
|
|
|
div#pandora_logo_header {
|
2019-01-23 15:30:46 +01:00
|
|
|
/* Put here your company logo (139x60 pixels) like this: */
|
|
|
|
/* background: url(../../images/MiniLogoArtica.jpg); */
|
|
|
|
background: url(../../images/pandora_logo_head.png);
|
|
|
|
background-position: 0% 0%;
|
|
|
|
width: 139px;
|
|
|
|
height: 60px;
|
|
|
|
float: left;
|
2009-05-13 19:00:58 +02:00
|
|
|
}
|
2009-09-25 18:04:14 +02:00
|
|
|
|
2013-04-29 16:10:22 +02:00
|
|
|
#header_table img {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-top: 0px;
|
2013-04-29 16:10:22 +02:00
|
|
|
}
|
|
|
|
|
2013-04-30 09:23:40 +02:00
|
|
|
.autorefresh_disabled {
|
2019-01-23 15:30:46 +01:00
|
|
|
cursor: not-allowed !important;
|
2013-04-30 09:23:40 +02:00
|
|
|
}
|
|
|
|
|
2013-06-10 18:15:36 +02:00
|
|
|
a.autorefresh {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding-right: 8px;
|
2013-06-10 18:15:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#refrcounter {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: white;
|
2013-06-10 18:15:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#combo_refr select {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-right: 8px;
|
2013-06-10 18:15:36 +02:00
|
|
|
}
|
|
|
|
|
2009-09-25 18:04:14 +02:00
|
|
|
.disabled_module {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #aaa;
|
2009-09-25 18:04:14 +02:00
|
|
|
}
|
2010-06-07 17:22:29 +02:00
|
|
|
div.warn {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url(../../images/info.png) no-repeat;
|
|
|
|
margin-top: 7px;
|
|
|
|
padding: 2px 1px 6px 25px;
|
2010-06-07 17:22:29 +02:00
|
|
|
}
|
2011-06-28 15:31:52 +02:00
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
.submenu_not_selected {
|
2019-01-23 15:30:46 +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;
|
|
|
|
font-weight: normal !important;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Submenus havent borders */
|
2019-01-23 15:30:46 +01:00
|
|
|
.submenu_not_selected,
|
|
|
|
.submenu_selected,
|
|
|
|
.submenu2 {
|
|
|
|
border: 0px !important;
|
|
|
|
min-height: 35px !important;
|
2011-06-28 15:31:52 +02:00
|
|
|
}
|
2011-07-06 13:57:27 +02:00
|
|
|
|
|
|
|
ol.steps {
|
2019-02-07 08:59:45 +01:00
|
|
|
margin-bottom: 70px;
|
2011-07-06 13:57:27 +02:00
|
|
|
}
|
|
|
|
div#steps_clean {
|
2019-01-23 15:30:46 +01:00
|
|
|
display: none;
|
2011-07-06 13:57:27 +02:00
|
|
|
}
|
2013-04-10 09:57:54 +02:00
|
|
|
|
2011-07-06 13:57:27 +02:00
|
|
|
div#events_list {
|
2019-01-23 15:30:46 +01:00
|
|
|
float: left;
|
|
|
|
width: 100%;
|
2011-07-06 13:57:27 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
/*span#logo_text1 {
|
2011-07-06 13:57:27 +02:00
|
|
|
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;
|
2019-01-24 11:10:49 +01:00
|
|
|
}*/
|
2011-08-08 11:50:41 +02:00
|
|
|
.pagination {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-top: 15px;
|
|
|
|
margin-bottom: 5px;
|
2011-08-08 11:50:41 +02:00
|
|
|
}
|
2013-04-10 09:57:54 +02:00
|
|
|
.pagination * {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-left: 0px !important;
|
|
|
|
margin-right: 0px !important;
|
|
|
|
vertical-align: middle;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
2011-09-06 15:43:44 +02:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/* TABLAS */
|
2011-12-13 10:13:28 +01:00
|
|
|
/* Cells divs to set individual styles with the table objects */
|
|
|
|
div.cellBold {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
font-weight: bold;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
|
|
|
|
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 {
|
2019-01-23 15:30:46 +01: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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
text-align: center;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.cellWhite {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: #fff;
|
|
|
|
color: #111;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.cellNormal {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: #6eb432;
|
|
|
|
color: #fff;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.cellCritical {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: #f85858;
|
|
|
|
color: #fff;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.cellWarning {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: #ffea59;
|
|
|
|
color: #111;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.cellUnknown {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: #aaaaaa;
|
|
|
|
color: #ffffff;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.cellNotInit {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: #3ba0ff;
|
|
|
|
color: #ffffff;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.cellAlert {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: #ff8800;
|
|
|
|
color: #111;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.cellBorder1 {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border: 1px solid #666;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div.cellBig {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
font-size: 18px;
|
2011-12-13 10:13:28 +01:00
|
|
|
}
|
2012-04-12 14:38:42 +02:00
|
|
|
|
|
|
|
.info_box {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #f9faf9;
|
|
|
|
margin-top: 10px !important;
|
|
|
|
margin-bottom: 10px !important;
|
|
|
|
padding: 0px 5px 5px 10px;
|
|
|
|
border-color: #e2e2e2;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px;
|
|
|
|
width: 100% !important;
|
|
|
|
-moz-border-radius: 4px;
|
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
border-radius: 4px;
|
2012-04-12 14:38:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.info_box .title * {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 10pt !important;
|
|
|
|
font-weight: bolder;
|
2012-04-12 14:38:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.info_box .icon {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 30px !important;
|
|
|
|
text-align: center;
|
2012-04-12 14:38:42 +02:00
|
|
|
}
|
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 {
|
2019-02-07 08:59:45 +01:00
|
|
|
filter: alpha(opacity=80); /* For IE8 and earlier */
|
2019-01-23 15:30:46 +01:00
|
|
|
-moz-opacity: 0.8;
|
|
|
|
opacity: 0.8;
|
|
|
|
-khtml-opacity: 0.8;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
2012-04-30 21:22:07 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
tr.group_view_data,
|
|
|
|
.group_view_data {
|
|
|
|
color: #3f3f3f;
|
2013-06-04 10:12:44 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
tr.group_view_crit,
|
|
|
|
.group_view_crit {
|
|
|
|
background-color: #fc4444;
|
|
|
|
color: #fff;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
tr.group_view_ok,
|
|
|
|
.group_view_ok {
|
|
|
|
background-color: #80ba27;
|
|
|
|
color: #fff;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
tr.group_view_not_init,
|
|
|
|
.group_view_not_init {
|
|
|
|
background-color: #5bb6e5;
|
|
|
|
color: #fff !important;
|
2014-12-01 13:55:47 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
tr.group_view_warn,
|
|
|
|
.group_view_warn,
|
|
|
|
tr.group_view_warn.a,
|
|
|
|
a.group_view_warn,
|
|
|
|
tr.a.group_view_warn {
|
|
|
|
background-color: #fad403;
|
|
|
|
color: #fff !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a.group_view_warn {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #fad403 !important;
|
|
|
|
color: #fff !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
tr.group_view_alrm,
|
|
|
|
.group_view_alrm {
|
|
|
|
background-color: #ffa631;
|
|
|
|
color: #fff !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
tr.group_view_unk,
|
|
|
|
.group_view_unk {
|
|
|
|
background-color: #b2b2b2;
|
|
|
|
color: #fff !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* classes for event priorities. Sits now in functions.php */
|
2019-01-23 15:30:46 +01:00
|
|
|
.datos_green,
|
|
|
|
.datos_greenf9,
|
|
|
|
.datos_green a,
|
|
|
|
.datos_greenf9 a,
|
|
|
|
.datos_green * {
|
|
|
|
background-color: #80ba27;
|
|
|
|
color: #fff;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.datos_red,
|
|
|
|
.datos_redf9,
|
|
|
|
.datos_red a,
|
|
|
|
.datos_redf9 a,
|
|
|
|
.datos_red * {
|
|
|
|
background-color: #fc4444;
|
|
|
|
color: #fff !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.datos_yellow,
|
|
|
|
.datos_yellowf9,
|
|
|
|
.datos_yellow * {
|
|
|
|
background-color: #fad403;
|
|
|
|
color: #111;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
2013-05-20 10:42:02 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
a.datos_blue,
|
|
|
|
.datos_bluef9,
|
|
|
|
.datos_blue,
|
|
|
|
.datos_blue * {
|
|
|
|
background-color: #4ca8e0;
|
|
|
|
color: #fff !important;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
2013-05-20 10:42:02 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.datos_grey,
|
|
|
|
.datos_greyf9,
|
|
|
|
.datos_grey * {
|
|
|
|
background-color: #999999;
|
|
|
|
color: #fff;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
2013-05-20 10:42:02 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.datos_pink,
|
|
|
|
.datos_pinkf9,
|
|
|
|
.datos_pink * {
|
|
|
|
background-color: #fdc4ca;
|
|
|
|
color: #111;
|
2012-09-13 16:06:08 +02:00
|
|
|
}
|
2013-05-20 10:42:02 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.datos_brown,
|
|
|
|
.datos_brownf9,
|
|
|
|
.datos_brown * {
|
|
|
|
background-color: #a67c52;
|
|
|
|
color: #fff;
|
2012-10-01 13:15:31 +02:00
|
|
|
}
|
2013-05-20 10:42:02 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.datos_orange,
|
|
|
|
.datos_orangef9,
|
|
|
|
.datos_orange * {
|
|
|
|
background-color: #f7931e;
|
|
|
|
color: #111;
|
2013-05-20 10:42:02 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01: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 {
|
|
|
|
padding: 5px 5px 5px 5px;
|
2012-04-30 21:22:07 +02:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/* global */
|
2019-01-23 15:30:46 +01:00
|
|
|
input#text-id_parent.ac_input,
|
|
|
|
input,
|
|
|
|
textarea,
|
|
|
|
select {
|
|
|
|
background-color: #ffffff !important;
|
|
|
|
border: 1px solid #cbcbcb;
|
|
|
|
-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
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/* plugins */
|
2012-05-28 19:19:49 +02:00
|
|
|
span#plugin_description {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 9px;
|
2012-05-28 19:19:49 +02:00
|
|
|
}
|
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
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - TINYMCE -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
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
|
|
|
#tinymce {
|
2019-01-23 15:30:46 +01:00
|
|
|
text-align: left;
|
2019-01-25 09:54:53 +01:00
|
|
|
padding-top: 20px;
|
2019-01-23 15:30:46 +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 {
|
|
|
|
font-size: 4pt !important;
|
|
|
|
line-height: 4pt;
|
|
|
|
}
|
|
|
|
.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 {
|
|
|
|
font-size: 6pt !important;
|
|
|
|
line-height: 6pt;
|
|
|
|
}
|
|
|
|
.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 {
|
|
|
|
font-size: 8pt !important;
|
|
|
|
line-height: 8pt;
|
|
|
|
}
|
|
|
|
.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 {
|
|
|
|
font-size: 10pt !important;
|
|
|
|
line-height: 10pt;
|
|
|
|
}
|
|
|
|
.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 {
|
|
|
|
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 {
|
|
|
|
font-size: 14pt !important;
|
|
|
|
line-height: 14pt;
|
|
|
|
}
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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 {
|
|
|
|
font-size: 24pt !important;
|
|
|
|
line-height: 24pt;
|
|
|
|
}
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
.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 {
|
|
|
|
font-size: 36pt !important;
|
|
|
|
line-height: 36pt;
|
|
|
|
}
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
.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 {
|
|
|
|
font-size: 72pt !important;
|
|
|
|
line-height: 72pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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 {
|
|
|
|
font-size: 96pt !important;
|
|
|
|
line-height: 96pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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 {
|
|
|
|
font-size: 128pt !important;
|
|
|
|
line-height: 128pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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 {
|
|
|
|
font-size: 154pt !important;
|
|
|
|
line-height: 154pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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 {
|
|
|
|
font-size: 196pt !important;
|
|
|
|
line-height: 196pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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 {
|
|
|
|
font-size: 4pt !important;
|
|
|
|
line-height: 4pt;
|
|
|
|
}
|
|
|
|
.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 {
|
|
|
|
font-size: 7pt !important;
|
|
|
|
line-height: 7pt;
|
|
|
|
}
|
|
|
|
.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 {
|
|
|
|
font-size: 12pt !important;
|
|
|
|
line-height: 12pt;
|
|
|
|
}
|
|
|
|
.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 {
|
|
|
|
font-size: 18pt !important;
|
|
|
|
line-height: 18pt;
|
|
|
|
}
|
|
|
|
.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 {
|
|
|
|
font-size: 36pt !important;
|
|
|
|
line-height: 36pt;
|
2014-01-23 17:46:10 +01:00
|
|
|
}
|
2013-02-20 14:48:46 +01:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - LEFT SIDEBAR IN GRAPHS POPUP - stat_win.php -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2013-02-20 14:48:46 +01:00
|
|
|
.menu_sidebar {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #111;
|
|
|
|
background: #3f3f3f;
|
2019-01-25 09:54:53 +01:00
|
|
|
margin: 0px;
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-left: 10px;
|
|
|
|
padding-left: 0px;
|
|
|
|
padding-right: 0px;
|
|
|
|
padding-top: 10px;
|
|
|
|
text-align: left;
|
|
|
|
font-family: arial, sans-serif, verdana;
|
|
|
|
font-size: 10px;
|
|
|
|
border: 1px solid #000;
|
|
|
|
position: absolute;
|
|
|
|
width: 400px;
|
|
|
|
height: 260px;
|
|
|
|
|
|
|
|
-moz-box-shadow: 0px 4px 4px #010e1b !important;
|
|
|
|
-webkit-box-shadow: 0px 4px 4px #010e1b !important;
|
|
|
|
box-shadow: 0px 4px 4px #010e1b !important;
|
|
|
|
|
|
|
|
filter: alpha(opacity=97);
|
|
|
|
-moz-opacity: 0.97;
|
|
|
|
opacity: 0.97;
|
2013-02-20 14:48:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu_sidebar_radius_left {
|
2019-01-23 15:30:46 +01: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
|
|
|
|
2019-01-23 15:30:46 +01: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
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
border-right: 0px solid #000;
|
2013-02-20 14:48:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu_sidebar_radius_right {
|
2019-01-23 15:30:46 +01: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;
|
|
|
|
border-bottom-right-radius: 8px;
|
2013-05-23 17:42:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu_sidebar_outer {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-left: 3px;
|
|
|
|
background: #ececec;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
-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*/
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
2013-04-10 09:57:54 +02:00
|
|
|
.groupsview {
|
2019-01-23 15:30:46 +01:00
|
|
|
border-spacing: 0px 4px;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2013-04-30 09:23:40 +02:00
|
|
|
.groupsview tr {
|
2019-01-23 15:30:46 +01:00
|
|
|
background-color: #666;
|
2013-04-30 09:23:40 +02:00
|
|
|
}
|
|
|
|
|
2013-04-10 09:57:54 +02:00
|
|
|
.groupsview th {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 12px;
|
|
|
|
padding: 5px;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.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
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
-moz-border-bottom-left-radius: 10px;
|
|
|
|
-webkit-border-bottom-left-radius: 10px;
|
|
|
|
border-bottom-left-radius: 10px;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.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;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
*/
|
2013-04-10 09:57:54 +02:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - TIP (to show help) -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2013-04-10 09:57:54 +02:00
|
|
|
a.tip {
|
2019-01-23 15:30:46 +01:00
|
|
|
display: inline !important;
|
|
|
|
cursor: help;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
a.tip > img {
|
|
|
|
margin-left: 2px;
|
|
|
|
margin-right: 2px;
|
2013-04-17 10:21:22 +02:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - SEARCH BOX in header -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2013-04-10 09:57:54 +02:00
|
|
|
input.search_input {
|
2019-01-23 15:30:46 +01: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;
|
|
|
|
margin-left: 2px;
|
|
|
|
padding-right: 25px;
|
|
|
|
color: #999;
|
2013-04-10 09:57:54 +02:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*.vertical_fields td input, .vertical_fields td select {
|
2013-05-23 17:42:32 +02:00
|
|
|
margin-top: 8px !important;
|
2019-01-24 11:10:49 +01:00
|
|
|
}*/
|
2013-04-15 13:44:36 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
a[id^="tgl_ctrl_"] > img,
|
|
|
|
a[id^="tgl_ctrl_"] > b > img {
|
|
|
|
vertical-align: middle;
|
2013-04-15 18:04:39 +02:00
|
|
|
}
|
|
|
|
|
2013-02-26 17:10:02 +01:00
|
|
|
/* Images forced title */
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
div.forced_title_layer {
|
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 100000;
|
|
|
|
border: 1px solid #708090;
|
|
|
|
background-color: #666;
|
|
|
|
color: #fff;
|
|
|
|
padding: 4px 5px;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: small;
|
|
|
|
font-size: 11px;
|
|
|
|
/* 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 */
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
div.legend > div {
|
|
|
|
pointer-events: none; /* Allow to click the graphs below */
|
|
|
|
opacity: 0.65 !important;
|
2013-04-15 13:44:36 +02:00
|
|
|
}
|
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 */
|
2019-01-23 15:30:46 +01:00
|
|
|
table.databox div.legend > td {
|
|
|
|
padding: 1px;
|
2016-06-07 13:10:08 +02:00
|
|
|
}
|
|
|
|
|
2014-10-13 18:51:21 +02:00
|
|
|
div.nodata_text {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding: 5px 12px 0px 68px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #c1c1c1;
|
|
|
|
text-transform: uppercase;
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
text-align: left;
|
2013-04-15 18:04:39 +02:00
|
|
|
}
|
|
|
|
|
2014-10-13 18:51:21 +02:00
|
|
|
div.nodata_container {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 150px;
|
|
|
|
height: 100px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
margin: auto auto;
|
|
|
|
display: table;
|
2013-04-15 18:04:39 +02:00
|
|
|
}
|
2013-05-23 17:42:32 +02:00
|
|
|
|
|
|
|
#snmp_data {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 40%;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 20px;
|
2013-05-23 17:42:32 +02:00
|
|
|
}
|
|
|
|
|
2014-12-12 12:55:46 +01:00
|
|
|
#rmf_data {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 40%;
|
|
|
|
height: 80%;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 20px;
|
|
|
|
overflow: auto;
|
2014-12-12 12:55:46 +01:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/* service map */
|
2013-09-24 15:20:59 +02:00
|
|
|
#container_servicemap_legend {
|
2019-01-23 15:30:46 +01:00
|
|
|
position: absolute;
|
|
|
|
width: 200px;
|
|
|
|
background: #fff;
|
|
|
|
margin-top: 10px;
|
|
|
|
right: 2px;
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 10px;
|
|
|
|
opacity: 0.9;
|
2013-09-24 15:20:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#container_servicemap_legend table {
|
2019-01-23 15:30:46 +01:00
|
|
|
text-align: left;
|
2013-09-24 15:20:59 +02:00
|
|
|
}
|
|
|
|
|
2016-05-04 13:00:27 +02:00
|
|
|
.legend_servicemap_item {
|
2019-01-23 15:30:46 +01:00
|
|
|
display: none;
|
2016-05-04 13:00:27 +02:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/* agent modules*/
|
2013-09-24 15:20:59 +02:00
|
|
|
.legend_square {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 20px;
|
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 10px;
|
2013-09-24 15:20:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.legend_square_simple {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding-left: 0px;
|
|
|
|
padding-right: 10px;
|
|
|
|
padding-bottom: 3px;
|
2013-09-24 15:20:59 +02:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.legend_square div,
|
|
|
|
.legend_square_simple div {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
border-radius: 3px;
|
2013-09-24 15:20:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.legend_basic {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #f4f4f4;
|
|
|
|
margin-top: 10px;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 10px;
|
2013-09-24 15:20:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.agents_modules_table th {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #3f3f3f;
|
2019-01-25 09:54:53 +01:00
|
|
|
border: 1px solid #e2e2e2;
|
2013-09-24 15:20:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.agents_modules_table th * {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #ffffff;
|
2013-09-24 15:20:59 +02:00
|
|
|
}
|
2013-10-08 16:16:06 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* LOAD_ENTERPRISE.PHP
|
|
|
|
*/
|
|
|
|
#code_license_dialog {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding: 50px;
|
|
|
|
padding-top: 10px;
|
2013-10-08 16:16:06 +02:00
|
|
|
}
|
|
|
|
#code_license_dialog #logo {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-bottom: 20px;
|
|
|
|
text-align: center;
|
2013-10-08 16:16:06 +02:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
#code_license_dialog,
|
|
|
|
#code_license_dialog * {
|
|
|
|
font-size: 14px;
|
2013-10-08 16:16:06 +02:00
|
|
|
}
|
|
|
|
#code_license_dialog ul {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding-left: 30px;
|
|
|
|
list-style-image: url("../../images/input_tick.png");
|
2013-10-08 16:16:06 +02:00
|
|
|
}
|
|
|
|
#code_license_dialog li {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-bottom: 12px;
|
2013-10-08 16:16:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#code_license_dialog #code {
|
2019-01-23 15:30:46 +01:00
|
|
|
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;
|
2013-10-08 16:16:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#code_license_dialog a {
|
2019-01-23 15:30:46 +01:00
|
|
|
text-decoration: underline;
|
2013-10-16 11:19:51 +02:00
|
|
|
}
|
2013-12-12 15:49:36 +01:00
|
|
|
|
|
|
|
/* GRAPHS CSS */
|
|
|
|
|
|
|
|
.parent_graph {
|
2019-01-23 15:30:46 +01:00
|
|
|
position: relative;
|
|
|
|
margin: 0 auto;
|
2013-12-12 15:49:36 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.menu_graph,
|
|
|
|
.timestamp_graph {
|
|
|
|
position: absolute !important;
|
2013-12-12 15:49:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu_graph {
|
2019-01-23 15:30:46 +01:00
|
|
|
-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;
|
2013-12-12 15:49:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.legend_graph {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
text-align: left;
|
2013-12-12 15:49:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.legendColorBox * {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 0px;
|
|
|
|
padding: 0px 4px;
|
|
|
|
overflow: visible !important;
|
2013-12-12 15:49:36 +01:00
|
|
|
}
|
|
|
|
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
z-index: 102 !important;
|
2013-12-16 10:29:43 +01:00
|
|
|
}
|
2014-01-21 17:42:44 +01:00
|
|
|
|
|
|
|
/* Alert view */
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
table.alert_days th,
|
|
|
|
table.alert_time th {
|
|
|
|
height: 30px;
|
|
|
|
vertical-align: middle;
|
2014-01-21 17:42:44 +01:00
|
|
|
}
|
|
|
|
|
2014-01-23 20:49:16 +01:00
|
|
|
table.alert_escalation th img {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 18px;
|
2014-01-23 20:49:16 +01:00
|
|
|
}
|
|
|
|
|
2014-01-21 17:42:44 +01:00
|
|
|
td.used_field {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #6eb432 !important;
|
|
|
|
color: #ffffff;
|
|
|
|
font-weight: bold;
|
2014-03-05 12:34:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
td.overrided_field {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #666;
|
2014-01-21 17:42:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
td.unused_field {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #888;
|
2014-01-21 17:42:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
td.empty_field {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: url("../../images/long_arrow.png") no-repeat 100% center;
|
2014-01-21 17:42:44 +01:00
|
|
|
}
|
2014-03-05 12:34:05 +01:00
|
|
|
|
|
|
|
#table_macros textarea {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 96%;
|
2014-03-05 12:34:05 +01:00
|
|
|
}
|
2014-05-09 16:57:40 +02:00
|
|
|
|
2014-06-17 10:12:24 +02:00
|
|
|
/* Policies styles */
|
|
|
|
|
|
|
|
table#policy_modules td * {
|
2019-01-23 15:30:46 +01:00
|
|
|
display: inline;
|
2014-06-17 10:12:24 +02:00
|
|
|
}
|
2014-08-12 18:31:27 +02:00
|
|
|
|
|
|
|
.context_help_title {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-weight: bolder;
|
|
|
|
text-align: left;
|
2014-08-12 18:31:27 +02:00
|
|
|
}
|
|
|
|
.context_help_body {
|
2019-01-23 15:30:46 +01:00
|
|
|
text-align: left;
|
2014-08-26 14:22:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#left_column_logon_ok {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 750px;
|
|
|
|
float: left;
|
2014-08-26 14:22:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#news_board {
|
2019-01-23 15:30:46 +01:00
|
|
|
min-width: 530px;
|
2014-08-26 14:22:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#right_column_logon_ok {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 350px;
|
|
|
|
float: right;
|
|
|
|
margin-right: 20px;
|
2014-08-26 15:30:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#clippy_head_title {
|
2019-01-23 15:30:46 +01:00
|
|
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
2014-12-11 16:16:36 +01:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*.saml_button {
|
2016-05-30 08:13:46 +02:00
|
|
|
float: left;
|
|
|
|
position: fixed;
|
|
|
|
vertical-align: middle;
|
2019-01-24 11:10:49 +01:00
|
|
|
}*/
|
2016-05-30 08:13:46 +02:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - TACTICAL VIEW y TABLAS -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2019-01-23 15:30:46 +01:00
|
|
|
.status_tactical {
|
|
|
|
width: 100%;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
background-color: #fff !important;
|
|
|
|
padding: 10px;
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
margin-top: 5%;
|
|
|
|
text-align: left;
|
2015-03-31 09:18:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.status_tactical img {
|
2019-01-23 15:30:46 +01:00
|
|
|
border: 3px solid #000;
|
|
|
|
border-radius: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sumary {
|
|
|
|
color: #fff;
|
|
|
|
margin: 2px;
|
|
|
|
padding: 10px 30px;
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: bold;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.sumary_div {
|
|
|
|
color: #fff;
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: bold;
|
|
|
|
border-radius: 2px;
|
|
|
|
width: 120px;
|
|
|
|
height: 40px;
|
|
|
|
text-align: center;
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
2017-03-08 10:56:25 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.data > tbody > tr > td {
|
|
|
|
border-bottom: 1px solid #e2e2e2;
|
2015-04-15 09:45:13 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox .search {
|
|
|
|
margin-top: 0px;
|
2015-04-15 09:45:13 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.data > tbody > tr > td.progress_bar img {
|
|
|
|
border: 3px solid #000;
|
|
|
|
border-radius: 100px;
|
2015-04-15 09:45:13 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.pies fieldset.tactical_set {
|
|
|
|
width: 70% !important;
|
|
|
|
height: 285px;
|
2015-04-15 11:28:07 +02:00
|
|
|
}
|
2015-03-31 09:52:27 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.difference {
|
|
|
|
border-left-width: 2px;
|
|
|
|
border-left-style: solid;
|
|
|
|
border-right-width: 2px;
|
|
|
|
border-right-style: solid;
|
|
|
|
border-color: #e2e2e2;
|
2015-03-31 09:52:27 +02:00
|
|
|
}
|
2014-12-30 12:39:28 +01:00
|
|
|
|
2015-04-09 15:04:23 +02:00
|
|
|
#title_menu {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #fff;
|
|
|
|
float: right;
|
|
|
|
width: 70%;
|
|
|
|
letter-spacing: 0pt;
|
|
|
|
font-size: 8pt;
|
|
|
|
white-space: pre-wrap;
|
2015-04-09 15:04:23 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.no_hidden_menu {
|
|
|
|
background-position: 11% 50% !important;
|
2015-04-09 15:04:23 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
#menu_tab li.nomn,
|
|
|
|
#menu_tab li.nomn_high {
|
|
|
|
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;
|
|
|
|
margin-top: -10px;
|
2015-03-31 17:26:22 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
#menu_tab li.nomn_high,
|
|
|
|
#menu_tab li.nomn_high span {
|
|
|
|
color: #fff;
|
|
|
|
background-color: #fff;
|
2015-03-31 17:26:22 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
#menu_tab li.nomn img,
|
|
|
|
#menu_tab li img {
|
|
|
|
margin-top: 3px;
|
|
|
|
margin-left: 3px;
|
2015-04-07 09:50:46 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
#menu_tab li.tab_operation a,
|
|
|
|
#menu_tab a.tab_operation {
|
|
|
|
background: none !important ;
|
2015-03-31 17:26:22 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.agents_modules_table {
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
border-spacing: 0px;
|
2015-07-07 16:05:23 +02:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.agents_modules_table td {
|
|
|
|
border: 1px solid #e2e2e2;
|
2015-07-07 16:05:23 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.filters,
|
|
|
|
.databox.data,
|
|
|
|
.databox.profile_list {
|
|
|
|
margin-bottom: 20px;
|
2015-04-21 17:26:20 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.filters > tbody > tr > td {
|
|
|
|
padding: 10px;
|
|
|
|
padding-left: 20px;
|
2015-03-31 17:26:22 +02:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.profile_list > tbody > tr > td {
|
|
|
|
padding: 4px 1px;
|
|
|
|
padding-left: 5px;
|
|
|
|
border-bottom: 1px solid #e2e2e2;
|
2015-07-07 16:05:23 +02:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.profile_list > tbody > tr > a.tip > img {
|
|
|
|
margin: 0px;
|
2015-07-07 16:05:23 +02:00
|
|
|
}
|
2015-04-21 17:26:20 +02:00
|
|
|
|
2019-01-23 15:30:46 +01: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 {
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-left: 5px;
|
2015-04-21 17:26:20 +02:00
|
|
|
}
|
2019-01-23 15:30:46 +01: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 {
|
|
|
|
vertical-align: middle;
|
2015-06-12 15:50:46 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.filters > tbody > tr > td > a > img {
|
|
|
|
vertical-align: middle;
|
2015-04-22 09:51:34 +02:00
|
|
|
}
|
2015-04-21 17:26:20 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.data > tbody > tr > td > input[type="checkbox"] {
|
|
|
|
margin: 0px;
|
2015-07-03 11:13:10 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox_color > tbody > tr > td {
|
|
|
|
padding-left: 10px;
|
2015-04-15 09:45:13 +02:00
|
|
|
}
|
2015-03-31 17:26:22 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.agente > tbody > tr > td > div > canvas {
|
|
|
|
width: 100% !important;
|
|
|
|
text-align: left !important;
|
2015-07-09 17:52:37 +02:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.agente > tbody > tr > td > div.graph {
|
|
|
|
width: 100% !important;
|
|
|
|
text-align: left !important;
|
2015-07-09 17:52:37 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.green_title {
|
|
|
|
background-color: #82b92e;
|
|
|
|
font-weight: normal;
|
|
|
|
text-align: center;
|
2015-06-12 15:50:46 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.dashboard {
|
|
|
|
top: 23px;
|
2015-06-12 15:50:46 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.dashboard li a {
|
|
|
|
width: 158px !important;
|
2015-06-12 15:50:46 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.text_subDashboard {
|
|
|
|
float: left;
|
|
|
|
margin-top: 5%;
|
|
|
|
margin-left: 3%;
|
2015-06-12 15:50:46 +02:00
|
|
|
}
|
|
|
|
|
2016-07-20 16:07:56 +02:00
|
|
|
.title_um {
|
2019-01-25 09:54:53 +01:00
|
|
|
font-family: sans-serif;
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 20px;
|
|
|
|
color: #82b92e;
|
|
|
|
text-align: center;
|
2016-07-20 16:07:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.text_um {
|
2019-01-25 09:54:53 +01:00
|
|
|
font-family: sans-serif;
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 16px;
|
|
|
|
padding-left: 80px;
|
2016-07-20 16:07:56 +02:00
|
|
|
}
|
|
|
|
|
2014-12-30 12:39:28 +01:00
|
|
|
/* The items with the class 'spinner' will rotate */
|
|
|
|
/* Not supported on IE9 and below */
|
|
|
|
.spinner {
|
2019-01-23 15:30:46 +01:00
|
|
|
-webkit-animation: spinner 2s infinite linear;
|
|
|
|
animation: spinner 2s infinite linear;
|
2014-12-30 12:39:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes spinner {
|
2019-01-23 15:30:46 +01:00
|
|
|
0% {
|
|
|
|
-ms-transform: rotate(0deg); /* IE */
|
|
|
|
-moz-transform: rotate(0deg); /* FF */
|
|
|
|
-o-transform: rotate(0deg); /* Opera */
|
|
|
|
-webkit-transform: rotate(0deg); /* Safari and Chrome */
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
-ms-transform: rotate(359deg); /* IE */
|
|
|
|
-moz-transform: rotate(359deg); /* FF */
|
|
|
|
-o-transform: rotate(359deg); /* Opera */
|
|
|
|
-webkit-transform: rotate(359deg); /* Safari and Chrome */
|
|
|
|
transform: rotate(359deg);
|
|
|
|
}
|
2014-12-30 12:39:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spinner {
|
2019-01-23 15:30:46 +01:00
|
|
|
0% {
|
|
|
|
-ms-transform: rotate(0deg); /* IE */
|
|
|
|
-moz-transform: rotate(0deg); /* FF */
|
|
|
|
-o-transform: rotate(0deg); /* Opera */
|
|
|
|
-webkit-transform: rotate(0deg); /* Safari and Chrome */
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
-ms-transform: rotate(359deg); /* IE */
|
|
|
|
-moz-transform: rotate(359deg); /* FF */
|
|
|
|
-o-transform: rotate(359deg); /* Opera */
|
|
|
|
-webkit-transform: rotate(359deg); /* Safari and Chrome */
|
|
|
|
transform: rotate(359deg);
|
|
|
|
}
|
2015-02-03 13:37:56 +01:00
|
|
|
}
|
2016-03-09 11:45:48 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
2019-01-24 11:10:49 +01:00
|
|
|
* - Styles for the new networkmap -
|
2016-03-09 11:45:48 +01:00
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2019-01-23 15:30:46 +01:00
|
|
|
.zoom_controller {
|
|
|
|
width: 30px;
|
|
|
|
height: 210px;
|
|
|
|
background: blue;
|
|
|
|
border-radius: 15px;
|
2016-03-09 11:45:48 +01:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
top: 50px;
|
|
|
|
left: 10px;
|
|
|
|
position: absolute;
|
|
|
|
}
|
2016-03-09 11:45:48 +01:00
|
|
|
|
|
|
|
.vertical_range {
|
2019-01-23 15:30:46 +01:00
|
|
|
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;
|
2016-03-09 11:45:48 +01:00
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
left: -92px;
|
|
|
|
top: 93px;
|
2016-03-09 11:45:48 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
|
|
/* Only for chrome */
|
2016-09-22 11:12:19 +02:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.vertical_range {
|
|
|
|
left: -87px;
|
|
|
|
top: 93px;
|
|
|
|
}
|
2016-03-09 11:45:48 +01:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*.home_zoom {
|
2016-03-09 11:45:48 +01:00
|
|
|
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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
top: 10px;
|
|
|
|
left: 10px;
|
2016-09-22 11:12:19 +02:00
|
|
|
|
2019-01-23 15:30:46 +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;
|
2016-03-09 11:45:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.zoom_out {
|
2019-01-23 15:30:46 +01:00
|
|
|
top: 270px;
|
|
|
|
left: 10px;
|
2016-09-22 11:12:19 +02:00
|
|
|
|
2019-01-23 15:30:46 +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;
|
2016-03-09 11:45:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.title_bar {
|
2019-01-23 15:30:46 +01:00
|
|
|
border-bottom: 1px solid black;
|
2016-03-09 11:45:48 +01:00
|
|
|
}
|
|
|
|
.title_bar .title {
|
2019-01-23 15:30:46 +01:00
|
|
|
font-weight: bolder;
|
2016-03-09 11:45:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.title_bar .open_click {
|
2019-01-23 15:30:46 +01:00
|
|
|
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-03-09 11:45:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.title_bar .close_click {
|
2019-01-23 15:30:46 +01:00
|
|
|
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
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
*/
|
2016-05-25 13:35:05 +02:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - VISUAL MAPS -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2016-05-25 13:35:05 +02:00
|
|
|
div#vc-controls {
|
2019-01-23 15:30:46 +01:00
|
|
|
position: fixed;
|
|
|
|
top: 30px;
|
|
|
|
right: 20px;
|
2016-05-25 13:35:05 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
div#vc-controls div.vc-title,
|
|
|
|
div#vc-controls div.vc-refr {
|
|
|
|
margin-top: 6px;
|
|
|
|
margin-left: 3px;
|
|
|
|
margin-right: 3px;
|
2016-05-25 13:35:05 +02:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
div#vc-controls div.vc-refr > div {
|
|
|
|
display: inline;
|
2016-09-22 11:12:19 +02:00
|
|
|
}
|
2019-01-24 11:10:49 +01:00
|
|
|
div#vc-controls img.vc-qr {
|
2019-02-07 08:59:45 +01:00
|
|
|
margin-top: 6px;
|
|
|
|
margin-left: 8px;
|
|
|
|
margin-right: 8px;
|
2016-09-22 11:12:19 +02:00
|
|
|
}
|
2019-02-07 08:59:45 +01:00
|
|
|
div.simple_value > span.text > p,
|
|
|
|
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;
|
|
|
|
white-space: pre;
|
2019-01-23 15:30:46 +01:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - EVENTS -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
/* Image open dialog in group events by agents*/
|
|
|
|
#open_agent_groups {
|
2019-02-07 08:59:45 +01:00
|
|
|
cursor: pointer;
|
2019-01-23 15:30:46 +01:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - modal window and edit user -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2019-01-23 15:30:46 +01: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;
|
|
|
|
z-index: 3;
|
|
|
|
position: fixed;
|
|
|
|
width: 750px;
|
|
|
|
max-width: 750px;
|
|
|
|
top: 20%;
|
|
|
|
background: white;
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.5s;
|
|
|
|
-webkit-transition: opacity 0.5s;
|
|
|
|
}
|
|
|
|
.modalheader {
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 37px;
|
|
|
|
left: 0px;
|
|
|
|
background-color: #82b92e;
|
|
|
|
}
|
|
|
|
.modalheadertext {
|
|
|
|
color: white;
|
|
|
|
position: relative;
|
2019-02-07 08:59:45 +01:00
|
|
|
font-family: Nunito;
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 13pt;
|
|
|
|
top: 8px;
|
|
|
|
}
|
|
|
|
.modalheaderh1 {
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 26px;
|
|
|
|
left: 0px;
|
|
|
|
padding-top: 10px;
|
|
|
|
background-color: #82b92e;
|
|
|
|
color: white;
|
|
|
|
position: relative;
|
2019-02-07 08:59:45 +01:00
|
|
|
font-family: Nunito;
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 11pt;
|
|
|
|
}
|
|
|
|
.modalclosex {
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline;
|
|
|
|
float: right;
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
.modalclosex:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline;
|
|
|
|
float: right;
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
.modalcontent {
|
|
|
|
color: black;
|
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
.modalcontentimg {
|
|
|
|
float: left;
|
|
|
|
margin-left: 30px;
|
|
|
|
margin-top: 30px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
.modalcontenttext {
|
|
|
|
float: left;
|
|
|
|
text-align: justify;
|
|
|
|
color: black;
|
|
|
|
font-size: 9.5pt;
|
|
|
|
line-height: 13pt;
|
|
|
|
margin-top: 30px;
|
|
|
|
width: 430px;
|
|
|
|
margin-left: 30px;
|
|
|
|
}
|
|
|
|
.modalokbutton {
|
|
|
|
transition-property: background-color, color;
|
|
|
|
transition-duration: 1s;
|
2017-01-26 12:10:28 +01:00
|
|
|
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;
|
2019-01-23 15:30:46 +01: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;
|
|
|
|
}
|
|
|
|
.modalokbuttontext {
|
|
|
|
transition-property: background-color, color;
|
|
|
|
transition-duration: 1s;
|
2017-01-26 12:10:28 +01:00
|
|
|
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;
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #82b92e;
|
2019-02-07 08:59:45 +01:00
|
|
|
font-family: Nunito;
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 10pt;
|
|
|
|
position: relative;
|
|
|
|
top: 6px;
|
2016-09-22 11:12:19 +02:00
|
|
|
}
|
2017-01-26 12:10:28 +01:00
|
|
|
|
|
|
|
.modalokbutton:hover {
|
|
|
|
transition-property: background-color, color;
|
2019-01-23 15:30:46 +01:00
|
|
|
transition-duration: 1s;
|
2017-01-26 12:10:28 +01:00
|
|
|
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;
|
2019-01-23 15:30:46 +01:00
|
|
|
background-color: #82b92e;
|
2017-01-26 12:10:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.modalokbutton:hover .modalokbuttontext {
|
|
|
|
transition-property: background-color, color;
|
2019-01-23 15:30:46 +01:00
|
|
|
transition-duration: 1s;
|
2017-01-26 12:10:28 +01:00
|
|
|
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;
|
2019-01-23 15:30:46 +01:00
|
|
|
color: white;
|
2017-01-26 12:10:28 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.modaldeletebutton {
|
|
|
|
transition-property: background-color, color;
|
|
|
|
transition-duration: 1s;
|
2018-09-07 14:15:21 +02:00
|
|
|
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;
|
2019-01-23 15:30:46 +01:00
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
|
|
|
margin-left: 45px;
|
|
|
|
float: left;
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
border-radius: 3px;
|
|
|
|
width: 90px;
|
|
|
|
height: 30px;
|
|
|
|
background-color: white;
|
|
|
|
border: 1px solid #fa5858;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modaldeletebuttontext {
|
|
|
|
transition-property: background-color, color;
|
|
|
|
transition-duration: 1s;
|
2018-09-07 14:15:21 +02:00
|
|
|
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;
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #fa5858;
|
2019-02-07 08:59:45 +01:00
|
|
|
font-family: Nunito;
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 10pt;
|
|
|
|
position: relative;
|
|
|
|
top: 6px;
|
2018-09-07 14:15:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.modaldeletebutton:hover .modaldeletebuttontext {
|
|
|
|
transition-property: background-color, color;
|
2019-01-23 15:30:46 +01:00
|
|
|
transition-duration: 1s;
|
2018-09-07 14:15:21 +02:00
|
|
|
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;
|
2019-01-23 15:30:46 +01:00
|
|
|
color: white;
|
2018-09-07 14:15:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.modaldeletebutton:hover {
|
|
|
|
transition-property: background-color, color;
|
2019-01-23 15:30:46 +01:00
|
|
|
transition-duration: 1s;
|
2018-09-07 14:15:21 +02:00
|
|
|
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;
|
2019-01-23 15:30:46 +01:00
|
|
|
background-color: #fa5858;
|
2018-09-07 14:15:21 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.modalgobutton {
|
|
|
|
transition-property: background-color, color;
|
|
|
|
transition-duration: 1s;
|
2017-01-26 12:10:28 +01:00
|
|
|
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;
|
2019-01-23 15:30:46 +01: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;
|
|
|
|
}
|
|
|
|
.modalgobuttontext {
|
|
|
|
transition-property: background-color, color;
|
|
|
|
transition-duration: 1s;
|
2017-01-26 12:10:28 +01:00
|
|
|
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;
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #82b92e;
|
2019-02-07 08:59:45 +01:00
|
|
|
font-family: Nunito;
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 10pt;
|
|
|
|
position: relative;
|
|
|
|
top: 6px;
|
2016-09-22 11:12:19 +02:00
|
|
|
}
|
|
|
|
|
2017-01-26 12:10:28 +01:00
|
|
|
.modalgobutton:hover {
|
|
|
|
transition-property: background-color, color;
|
2019-01-23 15:30:46 +01:00
|
|
|
transition-duration: 1s;
|
2017-01-26 12:10:28 +01:00
|
|
|
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;
|
2019-01-23 15:30:46 +01:00
|
|
|
background-color: #82b92e;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
2017-01-26 12:10:28 +01:00
|
|
|
.modalgobutton:hover .modalgobuttontext {
|
|
|
|
transition-property: background-color, color;
|
2019-01-23 15:30:46 +01:00
|
|
|
transition-duration: 1s;
|
2017-01-26 12:10:28 +01:00
|
|
|
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;
|
2019-01-23 15:30:46 +01:00
|
|
|
color: white;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/* update manager online */
|
2019-01-23 15:30:46 +01:00
|
|
|
#opacidad {
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 3s;
|
|
|
|
-webkit-transition: opacity 3s;
|
|
|
|
z-index: 1;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
|
|
|
top: 0px;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.textodialogo {
|
|
|
|
margin-left: 0px;
|
|
|
|
color: #333;
|
|
|
|
padding: 20px;
|
|
|
|
font-size: 9pt;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.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;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.cargatextodialogo p,
|
|
|
|
.cargatextodialogo b,
|
|
|
|
.cargatextodialogo a {
|
|
|
|
font-size: 18pt;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/* global */
|
2019-01-23 15:30:46 +01:00
|
|
|
.readonly {
|
|
|
|
background-color: #dedede !important;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
2016-10-20 16:26:05 +02:00
|
|
|
.input_error {
|
2019-01-23 15:30:46 +01:00
|
|
|
border: 1px solid red;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
#toolbox > input {
|
|
|
|
border-width: 0px 1px 0px 0px;
|
|
|
|
border-color: lightgray;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
#toolbox > input.service_min {
|
|
|
|
border-width: 0px 0px 0px 0px;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
#toolbox > input.grid_min {
|
|
|
|
border-width: 0px 0px 0px 0px;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
2017-01-13 14:09:56 +01:00
|
|
|
#filter_event_status,
|
|
|
|
#filter_event_severity,
|
|
|
|
#filter_event_type {
|
2019-01-23 15:30:46 +01:00
|
|
|
width: 50%;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.rowPair:hover,
|
|
|
|
.rowOdd:hover {
|
|
|
|
background-color: #eee;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.databox.data > tbody > tr:hover {
|
|
|
|
background-color: #eee;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.checkselected {
|
|
|
|
background-color: #eee;
|
2017-02-28 15:41:03 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.tag-wrapper {
|
|
|
|
padding: 0 10px 0 0;
|
|
|
|
overflow: auto;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.pandora-tag {
|
|
|
|
float: left;
|
|
|
|
margin-bottom: 18px;
|
|
|
|
padding: 1px 6px 1px 0;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.pandora-tag-title {
|
|
|
|
color: white;
|
2019-02-07 08:59:45 +01:00
|
|
|
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;
|
2017-03-15 10:12:18 +01:00
|
|
|
}
|
|
|
|
|
2019-02-07 08:59:45 +01:00
|
|
|
.pandora-tag-value {
|
|
|
|
color: #373737;
|
2019-01-23 15:30:46 +01:00
|
|
|
font-weight: bold;
|
2019-02-07 08:59:45 +01:00
|
|
|
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
|
|
|
}
|
2017-03-17 13:40:17 +01:00
|
|
|
|
2017-03-21 11:44:46 +01:00
|
|
|
/*
|
2019-01-24 11:10:49 +01:00
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - HELP MODAL WINDOWS - pandora_help.php -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2017-03-21 11:44:46 +01:00
|
|
|
|
|
|
|
div#main_help_new {
|
2019-01-23 15:30:46 +01:00
|
|
|
text-align: center;
|
|
|
|
padding: 20px;
|
|
|
|
border-bottom: 1px solid #c2c2c2;
|
2017-03-21 11:44:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div#main_help_new_content {
|
2019-01-23 15:30:46 +01:00
|
|
|
padding-left: 30px;
|
|
|
|
padding-right: 30px;
|
|
|
|
padding-bottom: 20px;
|
|
|
|
padding-top: 10px;
|
|
|
|
background: white;
|
|
|
|
height: 100%;
|
|
|
|
font-size: 12pt;
|
2019-01-25 09:54:53 +01:00
|
|
|
font-family: "lato-bolder", serif;
|
2017-03-21 11:44:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div#main_help_new_content h1 {
|
2019-01-25 09:54:53 +01:00
|
|
|
font-family: "lato-boldest", serif;
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 14pt;
|
2017-03-21 11:44:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div#main_help_new_content p {
|
2019-01-25 09:54:53 +01:00
|
|
|
font-family: "lato-bolder", serif;
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 12pt;
|
2017-03-21 11:44:46 +01:00
|
|
|
}
|
2017-08-21 15:58:19 +02:00
|
|
|
div#main_help_new_content b {
|
2019-01-25 09:54:53 +01:00
|
|
|
font-family: "lato-bolder", serif;
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 12pt;
|
2017-08-21 15:58:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div#main_help_new_content li {
|
2019-01-25 09:54:53 +01:00
|
|
|
font-family: "lato-bolder", serif;
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 12pt;
|
2017-08-21 15:58:19 +02:00
|
|
|
}
|
2017-03-21 11:44:46 +01:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
div#footer_help {
|
|
|
|
background: #333;
|
|
|
|
text-align: center;
|
|
|
|
padding: 10px;
|
2017-03-22 15:26:54 +01:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/* EVENTS - /ajax/events.php */
|
2017-06-14 12:45:40 +02:00
|
|
|
/*view-agents lastest events for this agent*/
|
2019-01-23 15:30:46 +01:00
|
|
|
#div_all_events_24h {
|
|
|
|
padding: 4px;
|
2017-07-24 10:53:04 +02:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - REPORTS - graph_container.php -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2019-01-23 15:30:46 +01:00
|
|
|
.graph_conteiner_inside > .parent_graph {
|
|
|
|
width: 100% !important;
|
2017-07-24 10:53:04 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.graph_conteiner_inside > .parent_graph > .menu_graph {
|
|
|
|
left: 90% !important;
|
2017-07-24 10:53:04 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.graph_conteiner_inside > .parent_graph > .graph {
|
|
|
|
width: 90% !important;
|
2017-07-24 10:53:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.graph_conteiner_inside > div > .nodata_container > .nodata_text {
|
2019-01-23 15:30:46 +01:00
|
|
|
display: none;
|
2017-07-24 10:53:04 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.graph_conteiner_inside > div > .nodata_container {
|
|
|
|
background-size: 120px 80px !important;
|
2017-08-09 11:29:16 +02:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - WUX VIEW -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2019-01-23 15:30:46 +01:00
|
|
|
#mssg_error_div {
|
|
|
|
color: red;
|
|
|
|
font-size: 12px;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.wux_global_result_container {
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 30px;
|
|
|
|
margin-bottom: 30px;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.wux_global_result_title {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
color: white;
|
|
|
|
background-color: #373737;
|
|
|
|
border: 1px solid #373737;
|
|
|
|
height: 28px;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.wux_global_result_title p {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin: 8px;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.wux_global_result_content {
|
|
|
|
width: 100%;
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
height: 120px;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.wux_global_result_content_left {
|
|
|
|
float: left;
|
|
|
|
width: 40%;
|
|
|
|
text-align: center;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.wux_global_result_content_left ul {
|
|
|
|
display: inline-flex;
|
|
|
|
margin-top: 15px;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.wux_global_result_content_left ul li p {
|
|
|
|
margin-top: 35px;
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-left: 10px;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.wux_global_result_content_left ul li p b {
|
|
|
|
font-size: 16px;
|
2017-08-18 12:02:47 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.wux_global_result_content_right {
|
|
|
|
float: right;
|
|
|
|
width: 60%;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.wux_global_result_content_right ul {
|
|
|
|
display: inline-flex;
|
|
|
|
margin-top: 15px;
|
|
|
|
margin-left: 100px;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.wux_global_result_content_right ul li p {
|
|
|
|
margin-top: 36px;
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-left: 10px;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.wux_global_result_content_right ul li p b {
|
|
|
|
font-size: 16px;
|
2017-08-18 12:02:47 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.wux_transaction_container {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 30px;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.wux_result_transaction {
|
|
|
|
width: 33%;
|
|
|
|
float: left;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.wux_transaction_graphs {
|
|
|
|
width: 33%;
|
|
|
|
float: left;
|
2017-08-17 18:38:12 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.wux_transaction_graphs_pie {
|
|
|
|
width: 33%;
|
|
|
|
float: left;
|
2017-08-30 16:09:11 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.pagination_show_more {
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 10px;
|
2017-10-03 15:20:35 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.dashed {
|
|
|
|
stroke-dasharray: 10;
|
2017-10-03 15:20:35 +02:00
|
|
|
}
|
|
|
|
.path {
|
2019-01-23 15:30:46 +01:00
|
|
|
stroke-dasharray: 500;
|
|
|
|
stroke-dashoffset: 500;
|
|
|
|
animation: dash 15s linear;
|
2017-10-03 15:20:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes dash {
|
2019-01-23 15:30:46 +01:00
|
|
|
from {
|
|
|
|
stroke-dashoffset: 500;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
stroke-dashoffset: 0;
|
|
|
|
}
|
2017-10-03 15:20:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.route {
|
2019-01-23 15:30:46 +01:00
|
|
|
fill: none;
|
|
|
|
transition: all 2s ease-in-out;
|
2017-10-03 15:20:35 +02:00
|
|
|
}
|
2017-11-24 10:59:44 +01:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.limit_scroll {
|
|
|
|
max-width: 800px;
|
|
|
|
overflow-x: scroll;
|
2018-02-06 10:46:59 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
#is_favourite ul.container {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
2019-01-25 09:54:53 +01:00
|
|
|
flex-direction: row;
|
2019-01-23 15:30:46 +01:00
|
|
|
align-content: center;
|
|
|
|
justify-content: center;
|
2017-12-28 15:13:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#is_favourite ul.container a {
|
2019-01-23 15:30:46 +01:00
|
|
|
text-decoration: none;
|
2017-12-28 15:13:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#is_favourite ul.container a:hover li {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #e2e2e2;
|
2017-12-28 15:13:06 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
#is_favourite ul.container a li {
|
|
|
|
min-width: 250px;
|
|
|
|
height: 80px;
|
|
|
|
margin: 10px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
background: #f9faf9;
|
2017-12-28 15:13:06 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
#is_favourite ul.container a li div.icon_img {
|
|
|
|
width: 30%;
|
|
|
|
text-align: center;
|
2017-12-28 15:13:06 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
#is_favourite ul.container a li div.text {
|
|
|
|
min-width: 50%;
|
2019-01-25 09:54:53 +01:00
|
|
|
font-family: sans-serif;
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 18px;
|
|
|
|
color: #3f3f3f;
|
|
|
|
text-align: center;
|
2017-12-28 15:13:06 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
form ul.form_flex {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
2019-01-25 09:54:53 +01:00
|
|
|
flex-direction: row;
|
2019-01-23 15:30:46 +01:00
|
|
|
align-content: center;
|
|
|
|
justify-content: space-around;
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 20px;
|
|
|
|
background: #f9faf9;
|
2017-12-28 15:13:06 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
form ul.form_flex li {
|
|
|
|
flex: auto;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2017-12-28 15:13:06 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
form ul.form_flex li.first_elements {
|
|
|
|
min-width: 550px;
|
2017-12-28 15:13:06 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
form ul.form_flex li.second_elements {
|
|
|
|
min-width: 300px;
|
2017-12-28 15:13:06 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
form ul.form_flex li ul {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-around;
|
|
|
|
flex-basis: 100%;
|
2017-12-28 15:13:06 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
form ul.form_flex li ul li {
|
|
|
|
height: 50px;
|
|
|
|
width: 100%;
|
2017-12-28 15:13:06 +01:00
|
|
|
}
|
2018-01-30 17:38:29 +01:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
#modal_module_popup_close:hover {
|
|
|
|
cursor: pointer;
|
2018-01-30 17:38:29 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.modal_module_list:hover {
|
|
|
|
cursor: pointer;
|
2018-02-14 18:37:27 +01:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/* snmp */
|
2018-03-15 16:03:46 +01:00
|
|
|
#snmp_data {
|
2019-02-07 08:59:45 +01:00
|
|
|
background: #f9faf9;
|
2018-02-14 18:37:27 +01:00
|
|
|
}
|
2018-03-15 16:03:46 +01:00
|
|
|
#snmp_data .databox {
|
2019-01-23 15:30:46 +01:00
|
|
|
border: 0px;
|
2018-03-15 16:03:46 +01:00
|
|
|
}
|
2018-03-23 11:08:48 +01:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/* library for graphs */
|
2018-05-04 12:26:18 +02:00
|
|
|
.yAxis.y1Axis > .tickLabel {
|
2019-01-23 15:30:46 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
line-height: 1.05em !important;
|
|
|
|
width: auto !important;
|
2018-03-21 13:40:15 +01:00
|
|
|
}
|
2018-03-23 11:08:48 +01:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/* dialog */
|
2018-04-25 12:32:58 +02:00
|
|
|
.pandora_confirm_dialog .ui-dialog-buttonset {
|
2019-01-23 15:30:46 +01:00
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
margin-left: 10px;
|
|
|
|
float: none !important;
|
2018-04-25 12:32:58 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.pandora_confirm_dialog .ui-dialog-buttonset button {
|
|
|
|
flex: 50%;
|
2018-04-25 12:32:58 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
#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 {
|
2019-01-23 15:30:46 +01:00
|
|
|
text-transform: uppercase;
|
2018-05-21 14:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.dialog-grayed {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #373737 !important;
|
2018-05-21 14:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.dialog-grayed .ui-dialog-buttonpane {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #373737 !important;
|
2018-05-28 17:54:53 +02:00
|
|
|
}
|
2018-08-13 12:42:30 +02:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/* GIS MAP */
|
2018-08-13 12:42:30 +02:00
|
|
|
a.down_arrow {
|
2019-01-23 15:30:46 +01:00
|
|
|
content: url("../../images/down.png");
|
|
|
|
max-width: 21px;
|
|
|
|
max-height: 21px;
|
2018-08-13 12:42:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a.up_arrow {
|
2019-01-23 15:30:46 +01:00
|
|
|
content: url("../../images/down.png");
|
|
|
|
transform: rotate(180deg);
|
|
|
|
max-width: 21px;
|
|
|
|
max-height: 21px;
|
2018-08-13 12:42:30 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
tr:last-child > td > a.down_arrow,
|
|
|
|
tr:first-child > td > a.up_arrow {
|
|
|
|
visibility: hidden;
|
2018-08-13 12:42:30 +02:00
|
|
|
}
|
2018-09-13 19:08:45 +02:00
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/* system group status */
|
2019-01-23 15:30:46 +01:00
|
|
|
.group_modules_status_box > tbody > tr > td {
|
|
|
|
border-bottom: 1px solid #e2e2e2;
|
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0;
|
|
|
|
width: 10%;
|
|
|
|
height: 20px;
|
2018-09-13 19:08:45 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.group_modules_status_div {
|
|
|
|
color: #fff;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
text-align: left;
|
|
|
|
display: block;
|
|
|
|
vertical-align: middle;
|
|
|
|
line-height: 20px;
|
2018-10-02 17:11:02 +02:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/* extensions -> module groups */
|
2019-01-23 15:30:46 +01:00
|
|
|
.tooltip_counters h3 {
|
|
|
|
font-size: 12pt;
|
|
|
|
padding-bottom: 10px !important;
|
|
|
|
text-align: center;
|
2018-09-20 15:51:36 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.tooltip_counters li {
|
|
|
|
font-size: 8pt;
|
|
|
|
margin: 2px;
|
|
|
|
margin-left: 5px;
|
2018-09-20 15:51:36 +02:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.tooltip_counters li div {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
border-radius: 3px;
|
|
|
|
float: left;
|
|
|
|
margin-right: 5px;
|
2018-11-02 13:07:38 +01:00
|
|
|
}
|
|
|
|
|
2019-01-24 11:10:49 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - MESSAGE LIST POPUP -
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
2018-11-02 13:07:38 +01:00
|
|
|
div#dialog_messages table th {
|
2019-01-23 15:30:46 +01:00
|
|
|
text-align: left;
|
2018-11-02 13:07:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div#dialog_messages table th:last-child {
|
2019-01-23 15:30:46 +01:00
|
|
|
text-align: right;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
|
2019-02-12 11:41:21 +01:00
|
|
|
/*
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
* - Notifications
|
|
|
|
* ---------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2019-01-31 15:16:56 +01:00
|
|
|
.notification-ball {
|
|
|
|
border: white solid 2px;
|
|
|
|
border-radius: 50px;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2019-02-12 16:25:59 +01:00
|
|
|
cursor: pointer;
|
2019-01-31 15:16:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.notification-ball-no-messages {
|
|
|
|
background-color: #82b92e;
|
2019-02-13 16:40:37 +01:00
|
|
|
cursor: pointer;
|
2019-01-31 15:16:56 +01:00
|
|
|
}
|
|
|
|
.notification-ball-new-messages {
|
|
|
|
background-color: #fc4444;
|
|
|
|
}
|
|
|
|
|
2019-02-08 18:53:28 +01:00
|
|
|
#notification-wrapper {
|
2019-02-08 14:23:05 +01:00
|
|
|
background: white;
|
|
|
|
border: #a5a5a5 solid 1px;
|
|
|
|
z-index: 900000;
|
|
|
|
position: absolute;
|
|
|
|
width: 400px;
|
|
|
|
margin-top: -5px;
|
2019-02-19 11:13:07 +01:00
|
|
|
border-radius: 5px;
|
2019-02-08 14:23:05 +01:00
|
|
|
}
|
2019-02-08 18:53:28 +01:00
|
|
|
#notification-wrapper::before {
|
2019-02-08 14:23:05 +01:00
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
width: 0px;
|
|
|
|
height: 0;
|
|
|
|
border-color: transparent;
|
|
|
|
border-width: 12px;
|
|
|
|
border-style: solid;
|
|
|
|
bottom: 100%;
|
|
|
|
left: 78%;
|
|
|
|
left: calc(78% - 2px);
|
|
|
|
margin-left: -12px;
|
|
|
|
border-bottom-color: white;
|
|
|
|
}
|
2019-02-13 12:44:30 +01:00
|
|
|
#notification-wrapper-inner {
|
|
|
|
max-height: 400px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
2019-02-08 18:53:28 +01:00
|
|
|
#notification-wrapper-shadow {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
background: #111;
|
|
|
|
position: fixed;
|
|
|
|
z-index: 9009;
|
|
|
|
top: 0;
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
2019-02-08 14:23:05 +01:00
|
|
|
.notification-item {
|
|
|
|
background: whitesmoke;
|
|
|
|
height: 100px;
|
|
|
|
margin: 7px;
|
2019-02-19 11:13:07 +01:00
|
|
|
border: #e4e4e4 solid 1px;
|
2019-02-08 14:23:05 +01:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
align-items: center;
|
2019-02-13 16:40:37 +01:00
|
|
|
padding: 5px;
|
2019-02-08 14:23:05 +01:00
|
|
|
}
|
2019-02-19 11:13:07 +01:00
|
|
|
.notification-item:hover {
|
|
|
|
border: #ccc solid 1px;
|
|
|
|
}
|
2019-02-08 14:23:05 +01:00
|
|
|
.notification-item > * {
|
|
|
|
padding-left: 15px;
|
2019-02-12 16:46:21 +01:00
|
|
|
pointer-events: none;
|
2019-02-08 14:23:05 +01:00
|
|
|
}
|
|
|
|
|
2019-02-13 11:09:15 +01:00
|
|
|
.notification-item:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2019-02-08 14:23:05 +01:00
|
|
|
.notification-info {
|
|
|
|
width: 87%;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
2019-02-19 11:13:07 +01:00
|
|
|
overflow: hidden;
|
|
|
|
max-height: 83px;
|
|
|
|
line-height: 1.4em;
|
2019-02-08 14:23:05 +01:00
|
|
|
}
|
|
|
|
.notification-item img {
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
}
|
|
|
|
.notification-title {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.notification-subtitle {
|
|
|
|
margin: 0;
|
|
|
|
color: #373737;
|
|
|
|
}
|
|
|
|
|
2019-01-31 19:13:51 +01:00
|
|
|
.global-config-notification-title {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.global-config-notification-title h2 {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
2019-02-01 14:48:52 +01:00
|
|
|
.global-config-notification-checkboxes :first-child {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2019-02-01 13:46:58 +01:00
|
|
|
.global-config-notification-selectors {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.global-config-notification-selectors h4 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2019-02-05 13:36:16 +01:00
|
|
|
.global-config-notification-single-selector,
|
|
|
|
.global_config_notifications_dialog_add select {
|
2019-02-01 13:46:58 +01:00
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.global-config-notification-single-selector :first-child,
|
|
|
|
.global-config-notification-single-selector :first-child select {
|
|
|
|
width: 99%;
|
|
|
|
}
|
|
|
|
|
2019-02-05 17:40:44 +01:00
|
|
|
.global-config-notification-single-selector :last-child,
|
|
|
|
.global_config_notifications_dialog_add_wrapper {
|
2019-02-01 13:46:58 +01:00
|
|
|
flex-direction: column;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
2019-02-05 13:36:16 +01:00
|
|
|
.global_config_notifications_dialog_add {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
margin: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.global_config_notifications_two_ways_form_arrows {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
justify-content: center;
|
|
|
|
margin: 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.global_config_notifications_two_ways_form_arrows img {
|
|
|
|
margin: 15px 0;
|
|
|
|
}
|
|
|
|
|
2018-11-13 16:48:06 +01:00
|
|
|
/* --- JQUERY-UI --- */
|
|
|
|
.ui-button-text-only .ui-button-text {
|
2019-01-25 09:54:53 +01:00
|
|
|
font-family: "nunito", sans-serif;
|
2019-01-23 15:30:46 +01:00
|
|
|
font-size: 9pt;
|
|
|
|
color: #82b92e;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.ui-datepicker .ui-datepicker-title *,
|
|
|
|
.ui-datepicker th * {
|
|
|
|
color: white;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.ui-datepicker .ui-datepicker-title select,
|
|
|
|
.ui-datepicker .ui-datepicker-title option {
|
|
|
|
color: #111 !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-titlebar {
|
2019-01-23 15:30:46 +01:00
|
|
|
display: inherit;
|
|
|
|
text-align: center;
|
|
|
|
padding: 0.4em 1em;
|
|
|
|
height: 30px;
|
|
|
|
position: relative;
|
2019-01-25 09:54:53 +01:00
|
|
|
background-color: #82b92e !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-title {
|
2019-01-25 09:54:53 +01:00
|
|
|
font-family: "Nunito", sans-serif;
|
2019-01-23 15:30:46 +01:00
|
|
|
margin: 0.1em 0 !important;
|
|
|
|
white-space: nowrap !important;
|
|
|
|
width: 100% !important;
|
|
|
|
overflow: hidden !important;
|
|
|
|
text-overflow: ellipsis !important;
|
|
|
|
font-size: 11pt;
|
|
|
|
position: relative;
|
|
|
|
top: 5px;
|
|
|
|
float: none !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-titlebar-close {
|
2019-01-23 15:30:46 +01:00
|
|
|
position: absolute !important;
|
|
|
|
right: 1em !important;
|
|
|
|
width: 21px !important;
|
|
|
|
margin: 0px 0 0 0 !important;
|
|
|
|
padding: 1px !important;
|
|
|
|
height: 20px !important;
|
|
|
|
bottom: 30% !important;
|
|
|
|
top: 20% !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-content {
|
2019-01-23 15:30:46 +01:00
|
|
|
position: relative !important;
|
|
|
|
border: 0;
|
|
|
|
padding: 0.5em 1em !important;
|
|
|
|
background: none !important;
|
|
|
|
overflow: auto !important;
|
|
|
|
margin-bottom: 1em;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-buttonpane {
|
2019-01-23 15:30:46 +01:00
|
|
|
text-align: left;
|
|
|
|
border-width: 1px 0 0 0;
|
|
|
|
background-image: none;
|
|
|
|
margin-top: 0.5em;
|
|
|
|
padding: 0.3em 1em 0.5em 0.4em;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
|
2019-01-23 15:30:46 +01:00
|
|
|
float: right;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-buttonpane button {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin: 0.5em 1em 0.5em 0 !important;
|
|
|
|
cursor: pointer !important;
|
|
|
|
background: white !important;
|
|
|
|
background-color: white !important;
|
|
|
|
border: 1px solid #82b92e !important;
|
|
|
|
min-height: 35px !important;
|
|
|
|
width: 90px !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-widget-content {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #ffffff url(include/styles/images/ui-bg_flat_75_ffffff_40x100.png)
|
|
|
|
50% 50% repeat-x;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-state-default,
|
|
|
|
.ui-widget-content .ui-state-default,
|
|
|
|
.ui-widget-header .ui-state-default {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-top: 3px;
|
|
|
|
border: 1px solid #d3d3d3 !important;
|
|
|
|
border-bottom: 0 !important;
|
|
|
|
background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50%
|
|
|
|
repeat-x !important;
|
|
|
|
font-weight: normal !important;
|
|
|
|
color: #555555 !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-corner-all,
|
|
|
|
.ui-corner-top,
|
|
|
|
.ui-corner-left,
|
|
|
|
.ui-corner-tl {
|
2019-01-23 15:30:46 +01:00
|
|
|
border-top-left-radius: 0 !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-corner-all,
|
|
|
|
.ui-corner-top,
|
|
|
|
.ui-corner-right,
|
|
|
|
.ui-corner-tr {
|
2019-01-23 15:30:46 +01:00
|
|
|
border-top-right-radius: 0 !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-corner-all,
|
|
|
|
.ui-corner-bottom,
|
|
|
|
.ui-corner-left,
|
|
|
|
.ui-corner-bl {
|
2019-01-23 15:30:46 +01:00
|
|
|
border-bottom-left-radius: 0 !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-corner-all,
|
|
|
|
.ui-corner-bottom,
|
|
|
|
.ui-corner-right,
|
|
|
|
.ui-corner-br {
|
2019-01-23 15:30:46 +01:00
|
|
|
border-bottom-right-radius: 0 !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
#ui-datepicker-div {
|
2019-01-23 15:30:46 +01:00
|
|
|
border-color: #b1b1b1;
|
|
|
|
background: #ffffff;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-widget-header {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: #b1b1b1 !important;
|
|
|
|
color: #ffffff !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-datepicker-calendar th {
|
2019-01-23 15:30:46 +01:00
|
|
|
background-color: #3f3f3f;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-dialog .ui-widget-header {
|
2019-01-23 15:30:46 +01:00
|
|
|
background-color: #82b92e;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui_tpicker_hour,
|
|
|
|
.ui_tpicker_minute,
|
|
|
|
.ui_tpicker_second,
|
|
|
|
.ui-slider-handle {
|
2019-01-23 15:30:46 +01:00
|
|
|
border: 1px solid #aaaaaa !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-timepicker-div dd {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin: 0px 15px 0px 15px;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-timepicker-div .ui-datepicker-title {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: white;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-datepicker-buttonpane button {
|
2019-01-23 15:30:46 +01:00
|
|
|
border-color: #b1b1b1 !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-datepicker-buttonpane .ui-datepicker-current {
|
2019-01-23 15:30:46 +01:00
|
|
|
margin-left: 0.2em !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-dialog .ui-widget-content {
|
2019-01-23 15:30:46 +01:00
|
|
|
border: 0px !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-dialog {
|
2019-01-23 15:30:46 +01:00
|
|
|
box-shadow: 5px 5px 19px #4e4e4e;
|
|
|
|
border: 0px !important;
|
|
|
|
padding: 0 !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-dialog-titlebar {
|
2019-01-23 15:30:46 +01:00
|
|
|
border: 0px !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-dialog-titlebar .ui-icon-closethick,
|
|
|
|
.ui-dialog-titlebar .ui-state-default,
|
|
|
|
.ui-dialog-titlebar .ui-state-hover,
|
|
|
|
.ui-dialog-titlebar button {
|
2019-01-23 15:30:46 +01:00
|
|
|
background: transparent;
|
|
|
|
border: 0px;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
2019-01-25 09:54:53 +01:00
|
|
|
|
2018-11-13 16:48:06 +01:00
|
|
|
.ui-dialog-title {
|
2019-01-23 15:30:46 +01:00
|
|
|
color: #ffffff;
|
|
|
|
font-size: 9pt;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
.ui-widget input,
|
|
|
|
.ui-widget select,
|
|
|
|
.ui-widget textarea,
|
2019-01-23 15:30:46 +01:00
|
|
|
.ui-widget button {
|
|
|
|
font-family: Verdana, Arial, sans-serif !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
a.ui-button:active,
|
|
|
|
.ui-button:active,
|
2018-11-15 15:19:43 +01:00
|
|
|
.ui-button.ui-state-active:hover,
|
|
|
|
.ui-state-focus .ui-widget-content,
|
|
|
|
.ui-state-focus .ui-widget-header,
|
2019-01-23 15:30:46 +01:00
|
|
|
.ui-state-focus .ui-button:hover,
|
|
|
|
.ui-button:focus {
|
|
|
|
background: transparent !important;
|
|
|
|
border: none !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.ui-state-hover,
|
|
|
|
.ui-widget-content .ui-state-hover,
|
|
|
|
.ui-widget-header .ui-state-hover {
|
|
|
|
border: 1px solid #999999 !important;
|
|
|
|
border-bottom: 0 !important;
|
|
|
|
background: #dadada url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50%
|
|
|
|
repeat-x !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
.ui-state-active,
|
|
|
|
.ui-widget-content .ui-state-active,
|
|
|
|
.ui-widget-header .ui-state-active {
|
|
|
|
border: 1px solid #aaaaaa !important;
|
|
|
|
border-bottom: 0 !important;
|
|
|
|
background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50%
|
|
|
|
repeat-x !important;
|
|
|
|
font-weight: normal !important;
|
|
|
|
color: #212121 !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
2019-01-23 15:30:46 +01:00
|
|
|
.ui-state-active a,
|
|
|
|
.ui-state-active a:link,
|
|
|
|
.ui-state-active a:visited {
|
|
|
|
color: #212121 !important;
|
2018-11-13 16:48:06 +01:00
|
|
|
}
|
2018-11-15 15:19:43 +01:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
ul.ui-front {
|
|
|
|
z-index: 1000000 !important;
|
|
|
|
padding-right: 0px !important;
|
2018-11-15 15:19:43 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
ul.ui-front li {
|
|
|
|
padding: 3px !important;
|
2018-11-15 15:19:43 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
ul.ui-front li:hover {
|
|
|
|
background-color: #e1e3e1 !important;
|
2018-11-15 15:19:43 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
ul.ui-front li a.ui-menu-item-wrapper {
|
|
|
|
background: transparent !important;
|
|
|
|
border: none !important;
|
2018-11-15 15:19:43 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
ul.ui-front li a.ui-menu-item-wrapper span {
|
|
|
|
padding-left: 5px !important;
|
2018-11-15 15:19:43 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
ul.ui-front li a.ui-menu-item-wrapper:hover {
|
|
|
|
text-decoration: none !important;
|
2018-11-15 15:19:43 +01:00
|
|
|
}
|
2018-11-21 17:38:11 +01:00
|
|
|
|
2019-01-23 15:30:46 +01:00
|
|
|
input[type="submit"].ui-button-dialog {
|
|
|
|
margin: 0.5em 1em 0.5em 0 !important;
|
|
|
|
cursor: pointer !important;
|
|
|
|
background: white !important;
|
|
|
|
background-color: white !important;
|
|
|
|
color: #82b92e !important;
|
|
|
|
text-align: center !important;
|
|
|
|
border: 1px solid #82b92e !important;
|
|
|
|
height: 30px !important;
|
|
|
|
width: 90px !important;
|
2018-11-21 17:38:11 +01:00
|
|
|
}
|
2018-11-13 16:48:06 +01:00
|
|
|
/* --- END - JQUERY-UI --- */
|
2019-01-31 19:11:59 +01:00
|
|
|
|
|
|
|
/* --- SWITCH --- */
|
|
|
|
.p-switch {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
width: 30px;
|
|
|
|
height: 17px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-switch input {
|
|
|
|
opacity: 0;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-slider {
|
|
|
|
position: absolute;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background-color: #ccc;
|
|
|
|
-webkit-transition: 0.4s;
|
|
|
|
transition: 0.4s;
|
|
|
|
border-radius: 34px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-slider:before {
|
|
|
|
position: absolute;
|
|
|
|
content: "";
|
|
|
|
height: 13px;
|
|
|
|
width: 13px;
|
|
|
|
left: 2px;
|
|
|
|
bottom: 2px;
|
|
|
|
background-color: white;
|
|
|
|
-webkit-transition: 0.4s;
|
|
|
|
transition: 0.4s;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:checked + .p-slider {
|
|
|
|
background-color: #82b92e;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:focus + .p-slider {
|
|
|
|
box-shadow: 0 0 1px #82b92e;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:checked + .p-slider:before {
|
|
|
|
-webkit-transform: translateX(13px);
|
|
|
|
-ms-transform: translateX(13px);
|
|
|
|
transform: translateX(13px);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --- END SWITCH --- */
|
2019-02-11 17:53:37 +01:00
|
|
|
|
|
|
|
/* --- TOAST --- */
|
|
|
|
#notifications-toasts-wrapper {
|
|
|
|
position: fixed;
|
|
|
|
right: 20px;
|
|
|
|
top: 70px;
|
|
|
|
width: 270px;
|
|
|
|
height: 100%;
|
|
|
|
z-index: 6;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.snackbar {
|
|
|
|
max-width: 270px;
|
|
|
|
background-color: #333;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
/* border-radius: 2px; */
|
|
|
|
padding: 16px;
|
|
|
|
margin: 10px;
|
|
|
|
border-radius: 4px;
|
|
|
|
visibility: hidden;
|
|
|
|
pointer-events: all;
|
|
|
|
}
|
|
|
|
|
|
|
|
.snackbar.show {
|
|
|
|
visibility: visible;
|
|
|
|
-webkit-animation: fadein 0.5s, fadeout 0.5s 7.5s;
|
|
|
|
animation: fadein 0.5s, fadeout 0.5s 7.5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.snackbar p,
|
|
|
|
.snackbar h3 {
|
|
|
|
text-align: left;
|
|
|
|
margin: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
.snackbar h3 {
|
|
|
|
color: white;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes fadein {
|
|
|
|
from {
|
|
|
|
bottom: 0;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
bottom: 30px;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadein {
|
|
|
|
from {
|
|
|
|
bottom: 0;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
bottom: 30px;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes fadeout {
|
|
|
|
from {
|
|
|
|
bottom: 30px;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
bottom: 0;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeout {
|
|
|
|
from {
|
|
|
|
bottom: 30px;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
bottom: 0;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --- END TOAST --- */
|